mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
16 lines
457 B
TypeScript
16 lines
457 B
TypeScript
|
export declare type FooterTranslations = Partial<{
|
||
|
selectText: string;
|
||
|
selectKeyAriaLabel: string;
|
||
|
navigateText: string;
|
||
|
navigateUpKeyAriaLabel: string;
|
||
|
navigateDownKeyAriaLabel: string;
|
||
|
closeText: string;
|
||
|
closeKeyAriaLabel: string;
|
||
|
searchByText: string;
|
||
|
}>;
|
||
|
declare type FooterProps = Partial<{
|
||
|
translations: FooterTranslations;
|
||
|
}>;
|
||
|
export declare function Footer({ translations }: FooterProps): JSX.Element;
|
||
|
export {};
|