/** All valid values for the `type` attribute of ``. */ export declare const INPUT_TYPES: readonly ["text", "email", "password", "tel", "url", "search", "number"]; /** Union type derived from {@link INPUT_TYPES}. */ export type InputType = (typeof INPUT_TYPES)[number]; export type InputSize = "s" | "m" | "l"; export interface EdsInputEventDetail { value: string; } export interface EdsChangeEventDetail { value: string; } export interface EdsBlurEventDetail { value: string; } export interface EdsFocusEventDetail { value: string; } //# sourceMappingURL=input.types.d.ts.map