import { ExtractPropTypes, PropType } from 'vue'; export interface BreadcrumbItemType { icon?: string; command?: string; label: string; children?: BreadcrumbItemType[]; active?: Boolean; disabled?: Boolean; } export declare const breadcrumbProps: { readonly data: PropType; readonly separator: { readonly type: StringConstructor; readonly default: "/"; }; readonly separatorIcon: { readonly type: StringConstructor; readonly default: ""; }; }; export type BreadcrumbProps = ExtractPropTypes;