/// <reference types="react" />
export interface CnBottomNavBarItemProps extends React.HTMLAttributes<HTMLDivElement> {
    /**
     * 唯一主键
     */
    key: any;
    /**
     * 菜单名称，纯文字
     */
    title: string;
    /**
     * 菜单图标，CnIcon的type值
     */
    icon: string;
}
