import type { QTabPaneInstance } from './src/types';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall } from '../../../types/helpers';
export declare const QTabPane: SFCWithInstall<DefineComponent<{
    name: {
        type: StringConstructor;
        required: true;
    };
    title: {
        type: StringConstructor;
        required: true;
    };
    width: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
    };
    disabled: {
        type: BooleanConstructor;
        default: boolean;
    };
}, QTabPaneInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
    name: {
        type: StringConstructor;
        required: true;
    };
    title: {
        type: StringConstructor;
        required: true;
    };
    width: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
    };
    disabled: {
        type: BooleanConstructor;
        default: boolean;
    };
}>>, {
    disabled: boolean;
    width: string | number;
}>>;
export type { QTabPaneProps, QTabPaneInstance } from './src/types';
