import { PropType, ExtractPropTypes } from 'vue'; import { BreadcrumbSeparator, BreadcrumbItem } from './types'; /** * 属性 */ export declare const breadcrumbProps: { separator: { type: PropType; default: string; }; /** 面包屑数据 */ items: { type: PropType; required: boolean; }; separatorIcon: { readonly type: PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type BreadcrumbProps = ExtractPropTypes;