import type { QBreadcrumbsPropRoute, QBreadcrumbsInstance } from './src/types';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall } from '../../../types/helpers';
export declare const QBreadcrumbs: SFCWithInstall<DefineComponent<{
    linkComponent: {
        type: StringConstructor;
        default: null;
    };
    last: {
        type: StringConstructor;
        default: null;
    };
    route: {
        type: PropType<QBreadcrumbsPropRoute>;
        default: null;
    };
}, QBreadcrumbsInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
    linkComponent: {
        type: StringConstructor;
        default: null;
    };
    last: {
        type: StringConstructor;
        default: null;
    };
    route: {
        type: PropType<QBreadcrumbsPropRoute>;
        default: null;
    };
}>>, {
    linkComponent: string;
    last: string;
    route: QBreadcrumbsPropRoute;
}>>;
export type { QBreadcrumbsProps, QBreadcrumbsPropRoute, QBreadcrumbsInstance } from './src/types';
