import type { Slots } from 'vue';
import type { ExtractPropTypes } from 'vue';
export interface IBreadcrumbProps {
    separator: string;
    slots: Slots;
}
export declare const breadcrumbProps: {
    /**
     * @description separator character
     */
    readonly separator: {
        readonly type: StringConstructor;
        readonly default: "/";
    };
};
export declare type BreadcrumbProps = ExtractPropTypes<typeof breadcrumbProps>;
