export type TextareaResize = "vertical" | "horizontal" | "both" | "none"; export interface EdsTextareaInputEventDetail { value: string; } export interface EdsTextareaChangeEventDetail { value: string; } export interface EdsTextareaBlurEventDetail { value: string; } export interface EdsTextareaFocusEventDetail { value: string; } //# sourceMappingURL=textarea.types.d.ts.map