import React from "react";
declare type TextFieldProps = {
    required?: boolean;
    name?: string;
    label?: string;
    type?: string;
    multiline?: boolean;
    rows?: number;
    disabled?: boolean;
    onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
    value?: string | Date;
    id: string;
    fullWidth?: boolean;
    size?: "small" | undefined;
    InputLabelProps?: object;
    InputProps?: {
        ref: React.Ref<any>;
        className: string;
        startAdornment: React.ReactNode;
        endAdornment: React.ReactNode;
    };
    inputProps?: object;
};
export default function TextField({ required, name, label, type, multiline, rows, disabled, onChange, value, fullWidth, id, size, InputLabelProps, InputProps, inputProps, }: TextFieldProps): JSX.Element;
export {};
