UNPKG

247 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2import { ControlProps } from './types';
3export interface FilesControlProps extends ControlProps<string[]> {
4 accept?: string;
5}
6export declare const FilesControl: FunctionComponent<FilesControlProps>;