import { VariantProps } from 'class-variance-authority'; declare const bottomBarVariants: (props?: ({ direction?: "horizontal" | "vertical" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; interface BottomBarProps extends Omit, "className">, VariantProps { /** * The direction of the bottom bar * @default "horizontal" */ direction?: "horizontal" | "vertical"; } declare const BottomBar: import('react').ForwardRefExoticComponent>; export { BottomBar }; export type { BottomBarProps };