import { BaseNotNullableInputElementProps, BlurableElement, KeyboardElement } from "../../../types"; /** Multiline textual input component props type */ export type MultilineProps = Omit, "rounded"> & BlurableElement & KeyboardElement & { /** Is input should be resizable */ fixed?: boolean; /** Number of initial rows count */ rows?: number; }; //# sourceMappingURL=types.d.ts.map