mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
14 lines
578 B
TypeScript
14 lines
578 B
TypeScript
|
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<ScreenStateProps<InternalDocSearchHit>, 'translations'> & {
|
||
|
translations?: NoResultsScreenTranslations;
|
||
|
};
|
||
|
export declare function NoResultsScreen({ translations, ...props }: NoResultsScreenProps): JSX.Element;
|
||
|
export {};
|