/// <reference types="react" />
import { InputFieldProps } from '../InputField';
export interface FileFieldProps extends InputFieldProps {
    btnLabel?: React.ReactNode;
    accept?: string;
    isContain?: boolean;
    inputField?: boolean;
    nameLabel?: boolean;
    preview?: number | string;
    clear?: {
        tooltip?: string;
    };
    onChange?(value: string, partial?: boolean): void;
    onOpen?(value: string | null): void;
}
export default function FileField({ className, value, label, btnLabel, nameLabel, size, isContain, clear, inputField, placeholder, description, preview, onChange, onOpen }: FileFieldProps): import("react/jsx-runtime").JSX.Element;
