import { sizePropValidator } from '../../mixins';
import { Classes } from '../../types';
declare const _default: import("vue").DefineComponent<{
    /**
     * The color variant of the tabs
     * @type light | dark
     * @default light
     * @name color
     */
    color: {
        type: StringConstructor;
        default: () => string;
    };
    /**
     * Used to set the currently active tab
     * @type String
     * @default
     * @name modelValue
     */
    modelValue: {
        type: StringConstructor;
        default: string;
    };
    /**
     * The size variant of the tabs
     * @type sm | md | lg
     * @default md
     * @name size
     */
    size: {
        type: StringConstructor;
        default: () => string;
        validator: typeof sizePropValidator;
    };
    /**
     * Display the tabs header as full width
     * @type Boolean
     * @default false
     * @name stretch
     */
    stretch: {
        type: BooleanConstructor;
        default: boolean;
    };
}, unknown, {
    active: string;
    tabs: never[];
}, {
    classes(): Classes;
}, {
    setActive(id: string): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
    color?: unknown;
    modelValue?: unknown;
    size?: unknown;
    stretch?: unknown;
} & {
    color: string;
    size: string;
    modelValue: string;
    stretch: boolean;
} & {}> & {
    "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}, {
    color: string;
    size: string;
    modelValue: string;
    stretch: boolean;
}>;
export default _default;
