import type { ScreenStateProps } from './ScreenState'; import type { InternalDocSearchHit } from './types'; export declare type NoResultsScreenTranslations = Partial<{ noResultsText: string; suggestedQueryText: string; reportMissingResultsText: string; reportMissingResultsLinkText: string; }>; declare type NoResultsScreenProps = Omit, 'translations'> & { translations?: NoResultsScreenTranslations; }; export declare function NoResultsScreen({ translations, ...props }: NoResultsScreenProps): JSX.Element; export {};