import { ExtractPropTypes, PropType } from 'vue'; export interface Item { id: string; name: string; disabled?: boolean; } export declare const breadcrumbProps: { data: { type: PropType; default: () => Item[]; required: boolean; }; modelValue: { type: StringConstructor; default: string; }; onChange: { type: FunctionConstructor; default: () => void; }; }; export declare type BreadcrumbProps = ExtractPropTypes;