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