export declare const tuple: (...args: T) => T; declare const buttonTypes: ["primary", "default", "secondary", "success", "warning", "error"]; declare const alignmentTypes: ["flex-start", "flex-end", "center"]; declare const normalSizes: ["mini", "small", "medium", "large", "fluid", "auto"]; declare const textTransforms: ["capitalize", "lowercase", "uppercase", "inherit", "revert", "initial"]; declare const displayTypes: ["block", "inline", "inline-block", "flex", "inline-flex", "grid", "table", "none", "inherit"]; declare const justiyContentTypes: ["flex-start", "flex-end", "space-between", "space-around", "space-evenly", "center", "inherit", "initial"]; declare const alignItemsTypes: ["baseline", "center", "end", "start", "flex-start", "flex-end", "self", "self-start", "self-end", "inherit", "initial", "stretch", "unset"]; declare const placement: ["top", "topStart", "topEnd", "left", "leftStart", "leftEnd", "bottom", "bottomStart", "bottomEnd", "right", "rightStart", "rightEnd"]; declare const inputTypes: ["text", "password", "date", "datetime-local", "reset", "search", "email", "number", "radio", "checkbox", "file", "range", "textarea"]; declare const textAlignTypes: ["left", "right", "center", "justify", "initial", "inherit"]; declare const textDecorationTypes: ["line-through", "inherit", "initial", "none", "underline", "overline"]; export declare type NormalSizes = typeof normalSizes[number]; export declare type ButtonTypes = typeof buttonTypes[number]; export declare type TextTransformTypes = typeof textTransforms[number]; export declare type AlignmentTypes = typeof alignmentTypes[number]; export declare type NormalTypes = typeof buttonTypes[number]; export declare type DisplayTypes = typeof displayTypes[number]; export declare type JustiyContentTypes = typeof justiyContentTypes[number]; export declare type AlignItemsTypes = typeof alignItemsTypes[number]; export declare type InputTypes = typeof inputTypes[number]; export declare type TextAlignTypes = typeof textAlignTypes[number]; export declare type TextDecorationTypes = typeof textDecorationTypes[number]; export declare type Placement = typeof placement[number]; export {};