import type { ChangeEvent, ReactElement, ReactNode } from 'react'; import { Component } from 'react'; export interface InputFileProps { children: NonNullable; name: string; accept?: string; disabled?: boolean; multiple?: boolean; onFileUpload: (e: ChangeEvent) => void; } export declare class InputFile extends Component { handleChange: (e: ChangeEvent) => void; render(): ReactElement; } //# sourceMappingURL=index.d.ts.map