export declare const alignment: readonly ["start", "end"]; export declare type Alignment = typeof alignment[number]; export declare const buttonType: readonly ["button", "reset", "submit"]; export declare type ButtonType = typeof buttonType[number]; /** * by constructing the FontSize type from the fontSize array, we still get the benefits of a Type while * also having a fontSize const available at runtime * https://stackoverflow.com/a/64174790/981556 */ export declare const fontSize: readonly ["2xs", "xs", "sm", "md", "base", "lg", "xl", "2xl", "3xl", "4xl", "5xl", "6xl", "7xl"]; export declare type FontSize = typeof fontSize[number]; export declare const status: readonly ["idle", "invalid", "valid"]; export declare type Status = typeof status[number]; export declare const strokeWidth: readonly ["regular", "medium", "semibold", "bold"]; export declare type StrokeWidth = typeof strokeWidth[number]; export declare const target: readonly ["_blank", "_parent", "_self", "_top"]; export declare type Target = typeof target[number]; export declare const width: readonly ["auto", "full"]; export declare type Width = typeof width[number];