mirror of
https://github.com/oneclickvirt/oneclickvirt.github.io.git
synced 2026-05-26 12:30:22 +08:00
17 lines
489 B
TypeScript
17 lines
489 B
TypeScript
/// <reference types="react" />
|
|
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 {};
|