export declare const Size: {
    XS: "xs";
    SM: "sm";
    DEFAULT: "default";
    LG: "lg";
    XL: "xl";
};
export declare type Size = typeof Size[keyof typeof Size];
