import React from "react";
interface TextareaInputProps {
    onChange?: (value: string) => void;
    label?: string;
    disabled?: boolean;
    value?: string;
    fullWidth?: boolean;
    placeholder?: string;
    rows?: number;
}
export declare const TextareaInput: React.FC<TextareaInputProps>;
export {};
//# sourceMappingURL=TextareaInput.d.ts.map