import { ComponentProps } from 'react';
import { RecipeVariantProps } from '../../../styled-system/css';
export declare const BottomNavigationItemStyle: import('../../../styled-system/types').SlotRecipeRuntimeFn<"icon" | "label" | "root" | "iconGroup" | "badge", {
    isActive: {
        true: {
            label: {
                color: "sd.system.color.impression.primary";
            };
            icon: {
                color: "sd.system.color.impression.primary";
            };
        };
    };
    dot: {
        true: {
            badge: {
                top: "-2.5px";
                right: "4px";
            };
        };
    };
}>;
type Props = {
    icon: React.ReactNode;
    label: string;
    count?: number;
};
export type BottomNavigationItemProps = Props & ComponentProps<"button"> & RecipeVariantProps<typeof BottomNavigationItemStyle>;
export declare const BottomNavigationItem: React.FC<BottomNavigationItemProps>;
export {};
