import * as React from 'react';
type Props = Readonly<{
'data-test-id'?: string;
accept?: string;
label: string;
onChange(files: FileList | null): void;
}>;
export default function FileInput({ accept, 'data-test-id': dataTestId, label, onChange }: Props): React.JSX.Element;
export {};