export interface ITextareaAutoHeightOptions {
	defaultHeight: number;
}

export interface ITextareaAutoHeight {
	options?: ITextareaAutoHeightOptions;

	destroy(): void;
}
