import { StartEnd, StartEndOptions } from '@microsoft/fast-foundation'; import { Textarea } from './textarea.js'; export declare const TextareaAttributeNames: { readonly hideCharacterCount: "hide-character-count"; readonly maxLength: "max-length"; readonly errorMessage: "error-message"; }; /** * DefaultMaxCharacters * * the default for maximum number of characters allowed inside of the text area. */ export declare const DefaultMaxCharacters = 500; /** DefaultErrorMessage */ export declare const DefaultErrorMessage = "You\u2019ve exceed the maximum number of words we can process. Try reducing your text."; export type TextareaOptions = StartEndOptions & {}; /** * TextareaSubmitEventName * * The event name emitted when submit events occur */ export declare const TextareaSubmitEventName = "textareaSubmit"; /** * TextareaSubmitEvent * * The data associated with a textarea submit event */ export interface TextareaSubmitEventData { value: string; target: Textarea; } //# sourceMappingURL=textarea.options.d.ts.map