ResultsScreen.d.ts 326 B

123456
  1. /// <reference types="react" />
  2. import type { ScreenStateProps } from './ScreenState';
  3. import type { InternalDocSearchHit } from './types';
  4. declare type ResultsScreenProps = Omit<ScreenStateProps<InternalDocSearchHit>, 'translations'>;
  5. export declare function ResultsScreen(props: ResultsScreenProps): JSX.Element;
  6. export {};