import { ValueOf } from '../internal/types';
export declare const TabSize: {
    /** 卡片级尺寸 */
    readonly Large: "large";
    /** 页面级尺寸 */
    readonly Medium: "medium";
    /** 小尺寸 */
    readonly Small: "small";
};
export type TabSize = ValueOf<typeof TabSize>;
export declare const TabType: {
    readonly Line: "line";
    readonly Card: "card";
};
export type TabType = ValueOf<typeof TabType>;
