import { SvelteComponentTyped } from "svelte"; export declare const BOTTOM_NAVIGATION_CONTEXT_ID = "bottom-navigation-context-id"; import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; use?: ActionArray | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type BottomNavigationProps = typeof __propDef.props; export declare type BottomNavigationEvents = typeof __propDef.events; export declare type BottomNavigationSlots = typeof __propDef.slots; export default class BottomNavigation extends SvelteComponentTyped { } export {};