import type { BasicType } from '../../_utils'; import type { ExtractPropTypes, PropType } from 'vue'; import type { BreadcrumbItemTo } from './interface'; import type { VmIcon } from '../../_interface'; export declare const Props: { /** 自定义文字颜色 */ fontColor: BasicType, string | null>; /** 自定义分隔符颜色 */ iconColor: BasicType, string | null>; /** 自定义分隔符 */ separator: BasicType, null>; /** 跳转的路径参数 */ to: { type: PropType; default: () => null; }; }; /** breadcrumb-item 组件 props 类型 */ export type BreadcrumbItemProps = ExtractPropTypes;