export declare const INPUT_SIZES: readonly ["md", "lg"]; export declare const INPUT_VARIANTS: readonly ["default", "warning", "destructive", "success"]; export declare const INPUT_TYPES: readonly ["text", "email", "password", "tel", "url", "search"]; export type InputSize = (typeof INPUT_SIZES)[number]; export type InputVariant = (typeof INPUT_VARIANTS)[number]; export type InputType = (typeof INPUT_TYPES)[number]; export interface InputChangeDetail { value: string; }