import { ExtractPropTypes, PropType } from 'vue'; import { RouteLocationRaw } from 'vue-router'; import type BreadcrumbItem from './BreadcrumbItem.vue'; export declare const breadcrumbItemEmits: {}; export declare const breadcrumbItemProps: { to: { type: PropType; default: string; }; replace: { type: BooleanConstructor; default: boolean; }; }; export declare type BreadcrumbItemProps = ExtractPropTypes; export declare type BreadcrumbItemEmits = typeof breadcrumbItemEmits; export declare type BreadcrumbItemInstance = InstanceType;