import { ExtractPropTypes } from 'vue'; export declare const breadcrumbItemProps: { /** * 路由跳转对象,同 vue-router 的 to */ to: { type: (ObjectConstructor | StringConstructor)[]; default: string; }; /** * 是否使用 replace 模式进行路由跳转 */ replace: { type: BooleanConstructor; default: boolean; }; }; export type BreadcrumbItemProps = ExtractPropTypes;