import { ComponentType, SVGProps } from 'react'; type HeroIcon = ComponentType>; export type TabKey = "home" | "explore" | "myGroup"; export interface TabItem { key: TabKey; href: string; labelKey: string; IconOutline: HeroIcon; IconSolid: HeroIcon; } export declare const TAB_ICONS: { readonly home: { readonly IconOutline: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; readonly IconSolid: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; }; readonly explore: { readonly IconOutline: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; readonly IconSolid: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; }; readonly myGroup: { readonly IconOutline: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; readonly IconSolid: import('react').ForwardRefExoticComponent, "ref"> & { title?: string; titleId?: string; } & import('react').RefAttributes>; }; }; interface BottomNavigationProps { tabs: TabItem[]; activeTab: TabKey; } export declare function BottomNavigation({ tabs, activeTab }: BottomNavigationProps): import("react").JSX.Element; export {}; //# sourceMappingURL=BottomNavigation.d.ts.map