export type BottomNavVariant = "default" | "dark"; export interface BottomNavItem { label: string; icon?: string; badge?: string | number; disabled?: boolean; onClick?: () => void; } export interface BottomNavOptions { selector: string; items: BottomNavItem[]; activeIndex?: number; variant?: BottomNavVariant; elevated?: boolean; inline?: boolean; ariaLabel?: string; hydrate?: boolean; onChange?: (index: number) => void; } //# sourceMappingURL=BottomNav.types.d.ts.map