declare const SizeOptions: readonly ["xs", "s", "m", "l", "xl", "2xl"]; export declare const SizeArgTypes: { defaultValue: string; options: readonly ["xs", "s", "m", "l", "xl", "2xl"]; control: { type: string; }; }; export type Size = (typeof SizeOptions)[number]; declare const ShapeOptions: readonly ["round", "square"]; export declare const ShapeArgTypes: { options: readonly ["round", "square"]; control: { type: string; }; }; export type Shape = (typeof ShapeOptions)[number]; declare const ColorOptions: readonly ["primary", "accent", "success", "warning", "error"]; export declare const ColorArgTypes: { options: readonly ["primary", "accent", "success", "warning", "error"]; description: string; defaultValue: string; default: string; control: { type: string; }; }; export type Color = (typeof ColorOptions)[number]; declare const GapOptions: readonly [0, 2, 4, 8]; export type Gap = (typeof GapOptions)[number]; export {};