/** * Represents the tiers of size tokens that can be applied to Framework Components */ export declare enum DESIGN_SIZE { tiny = "tiny", small = "small", medium = "medium", large = "large", huge = "huge" } export declare const DESIGN_SIZE_LITERALS: { readonly tiny: DESIGN_SIZE.tiny; readonly small: DESIGN_SIZE.small; readonly medium: DESIGN_SIZE.medium; readonly large: DESIGN_SIZE.large; readonly huge: DESIGN_SIZE.huge; }; export declare type DESIGN_SIZE_ARGUMENT = keyof typeof DESIGN_SIZE_LITERALS;