mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
15 lines
457 B
TypeScript
15 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 {};
|