declare const states: ("focus" | "disabled" | "selected")[];
export type KendoBottomNavItemProps = {
    icon?: string;
    text?: string;
    link?: string;
};
export type KendoBottomNavItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const BottomNavItem: {
    (props: KendoBottomNavItemProps & KendoBottomNavItemState & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "disabled" | "selected")[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default BottomNavItem;
