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