import type { RendererNode, RendererElement, ComputedOptions, MethodOptions, ExtractPropTypes,  InjectionKey,  PropType,  VNode,  Component } from 'vue';
export declare const Props: {
    readonly separator: {
        readonly type: PropType<VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }> | Component<any, any, any, ComputedOptions, MethodOptions>>;
        readonly default: () => null;
    };
    readonly itemColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly separatorColor: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly fontSize: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
};
export declare type BreadcrumbPropsType = ExtractPropTypes<typeof Props>;
export declare const BreadcrumbPropsKey: InjectionKey<BreadcrumbPropsType>;
