export declare const BASE_SIZES: { readonly SMALL: "small"; readonly MEDIUM: "medium"; readonly LARGE: "large"; }; export declare const SIZES: { readonly SMALL: "small"; readonly MEDIUM: "medium"; readonly LARGE: "large"; readonly XXS: "xxs"; readonly XS: "xs"; }; export declare enum BaseSizes { SMALL = "small", MEDIUM = "medium", LARGE = "large" } export declare enum Sizes { XXS = "xxs", XS = "xs", SMALL = "small", MEDIUM = "medium", LARGE = "large" } export type SIZES_VALUES = (typeof SIZES)[keyof typeof SIZES];