/// 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; hideButton?: boolean; disabled?: boolean; } export default function FileField(props: FileFieldProps): import("react/jsx-runtime").JSX.Element;