import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; export interface IBottomNavigationItem { onClick: () => void; icon: MaterialIcons; label: string; } import { type ActionArray } from '../../utils/useActions'; declare const __propDef: { props: { [x: string]: any; icon?: string | undefined; label?: string | undefined; use?: ActionArray | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type BottomNavigationItemProps = typeof __propDef.props; export declare type BottomNavigationItemEvents = typeof __propDef.events; export declare type BottomNavigationItemSlots = typeof __propDef.slots; export default class BottomNavigationItem extends SvelteComponentTyped { } export {};