import { ReactElement } from 'react'; import { NotificationButtonProps } from '../NotificationButton/types'; export declare const bottomNavigationVariants: (props?: ({ variant?: "default" | "box" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type BottomNavigationProps = { variant?: 'box' | 'default'; children: ReactElement | ReactElement[]; className?: string; selectedKey?: string; isLabelVisible?: boolean; }; export type BottomNavigationItemProps = NotificationButtonProps & { className?: string; }; //# sourceMappingURL=types.d.ts.map