import './AutoResizeTextarea.scss'; interface AutoResizeTextareaProps { value: string; onChange: (val: string) => void; className?: string; spellCheck?: boolean; placeholder?: string; disabled?: boolean; delimiter?: string; id?: string; 'data-testid'?: string; } /** * Makes a textarea that auto resizes based on contents, its height grows with new lines. * If a delimeter is set, such as " -" or " ", as used by jvm args or env vars * then the field will also "explode" the value by the delimiter over new lines * on focus, and implode on blur. By default, it doesn't word wrap. */ declare function AutoResizeTextarea({ className, value: propsValue, onChange, spellCheck, placeholder, disabled, delimiter, id, 'data-testid': dataTestId, }: AutoResizeTextareaProps): JSX.Element; export default AutoResizeTextarea; //# sourceMappingURL=AutoResizeTextarea.d.ts.map