import { ITextInputProps } from './ITextInputProps';
export interface ILongTextInputProps extends ITextInputProps {
    autoAdjustHeight?: boolean;
    resizable?: boolean;
}
