import { WithTranslation } from 'react-i18next'; import { BareProps } from './types'; import React from 'react'; declare type Props = BareProps & WithTranslation & { accept?: string; clearContent?: boolean; help?: React.ReactNode; isDisabled?: boolean; isError?: boolean; label: React.ReactNode; onChange?: (contents: Uint8Array, name: string) => void; placeholder?: React.ReactNode | null; withEllipsis?: boolean; withLabel?: boolean; }; declare const _default: React.ComponentType>; export default _default;