import { TdTabBarProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    bordered: {
        type: BooleanConstructor;
        default: boolean;
    };
    fixed: {
        type: BooleanConstructor;
        default: boolean;
    };
    safeAreaInsetBottom: {
        type: BooleanConstructor;
        default: boolean;
    };
    shape: {
        type: PropType<"round" | "normal">;
        default: "round" | "normal";
        validator(val: TdTabBarProps['shape']): boolean;
    };
    split: {
        type: BooleanConstructor;
        default: boolean;
    };
    theme: {
        type: PropType<"normal" | "tag">;
        default: "normal" | "tag";
        validator(val: TdTabBarProps['theme']): boolean;
    };
    value: {
        type: PropType<string | number | (string | number)[]>;
        default: any;
    };
    modelValue: {
        type: PropType<string | number | (string | number)[]>;
        default: any;
    };
    defaultValue: {
        type: PropType<string | number | (string | number)[]>;
    };
    onChange: PropType<(value: string | number) => void>;
};
export default _default;
