import { PropType } from 'vue'; import { BreadcrumbItemVariantProps, BreadcrumbsVariantProps } from './breadcrumbs.themes'; export declare const breadcrumbsProps: { size: { type: PropType; default: string; }; radius: { type: PropType; default: string; }; variant: { type: PropType; default: string; }; color: { type: PropType; default: string; }; underline: { type: PropType; default: string; }; isDisabled: { type: PropType; default: boolean; }; }; export declare const breadcrumbsItemProps: { size: { type: PropType; default: string; }; color: { type: PropType; default: string; }; underline: { type: PropType; default: string; }; isDisabled: { type: PropType; default: boolean; }; isCurrent: { type: PropType; default: boolean; }; isLast: { type: PropType; default: boolean; }; };