/// <reference types="react" />
import { TextareaProps } from "@vnxjs/components";
export interface NativeTextareaProps extends TextareaProps {
    nativeProps?: Record<string, string>;
    readonly?: boolean;
}
declare function NativeTextarea(props: NativeTextareaProps): JSX.Element;
export default NativeTextarea;
