Footer.d.ts 489 B

12345678910111213141516
  1. /// <reference types="react" />
  2. export declare type FooterTranslations = Partial<{
  3. selectText: string;
  4. selectKeyAriaLabel: string;
  5. navigateText: string;
  6. navigateUpKeyAriaLabel: string;
  7. navigateDownKeyAriaLabel: string;
  8. closeText: string;
  9. closeKeyAriaLabel: string;
  10. searchByText: string;
  11. }>;
  12. declare type FooterProps = Partial<{
  13. translations: FooterTranslations;
  14. }>;
  15. export declare function Footer({ translations }: FooterProps): JSX.Element;
  16. export {};