import * as React from 'react'; import { GetComponentProps } from '../../../typeUtilities'; import { Button } from '../../atoms'; interface FileInputProps { id?: string; initialLabel?: string; labelOnUpload?: string; onChange(value: FileList | null): void; } export declare const FileInput: React.SFC>; export {};