export type Alignment = (typeof Alignment)[keyof typeof Alignment]; export declare const Alignment: { readonly START: "start"; readonly CENTER: "center"; readonly END: "end"; }; export type Spacing = (typeof Spacing)[keyof typeof Spacing]; export declare const Spacing: { readonly 0: "0"; readonly SM: "sm"; readonly MD: "md"; readonly LG: "lg"; }; export type Justify = (typeof Justify)[keyof typeof Justify]; export declare const Justify: { readonly START: "start"; readonly END: "end"; readonly CENTER: "center"; readonly SPACE_BETWEEN: "space-between"; readonly SPACE_AROUND: "space-around"; readonly SPACE_EVENLY: "space-evenly"; }; export type Variant = (typeof Variant)[keyof typeof Variant]; export declare const Variant: { readonly NEUTRAL: "neutral"; readonly PRIMARY: "primary"; readonly ACCENT: "accent"; readonly SUCCESS: "success"; readonly WARNING: "warning"; readonly DANGER: "danger"; readonly ACCENT_GHOST: "accent-ghost"; readonly DANGER_GHOST: "danger-ghost"; readonly CONFIRMATION: "confirmation"; readonly SUBTLE: "subtle"; readonly GHOST: "ghost"; }; export type UnitIdentifier = SingleUnitIdentifier | `${SingleUnitIdentifier}-per-${SingleUnitIdentifier}` | (string & {}); export type SingleUnitIdentifier = 'acre' | 'bit' | 'byte' | 'celsius' | 'centimeter' | 'day' | 'degree' | 'fahrenheit' | 'fluid-ounce' | 'foot' | 'gallon' | 'gigabit' | 'gigabyte' | 'gram' | 'hectare' | 'hour' | 'inch' | 'kilobit' | 'kilobyte' | 'kilogram' | 'kilometer' | 'liter' | 'megabit' | 'megabyte' | 'meter' | 'microsecond' | 'mile' | 'mile-scandinavian' | 'milliliter' | 'millimeter' | 'millisecond' | 'minute' | 'month' | 'nanosecond' | 'ounce' | 'percent' | 'petabyte' | 'pound' | 'second' | 'stone' | 'terabit' | 'terabyte' | 'week' | 'yard' | 'year'; //# sourceMappingURL=models.d.ts.map