import { ExtractPropTypes } from 'vue'; export declare const breadcrumbProps: { /** * 分隔符 */ separator: { type: StringConstructor; default: string; }; /** * 图标分隔符 */ separatorIcon: { type: StringConstructor; default: string; }; /** * 模式 */ mode: { type: StringConstructor; default: string; }; /** * 是否启用 flex 布局 */ flex: { type: BooleanConstructor; default: boolean; }; }; export type BreadcrumbProps = ExtractPropTypes;