import { IReactCSSProperties } from '../../../../types/react/IReactCSSTypes';
import { IMIMETypesObject } from './fps-FileDropTypes';
import { IFileNameHandleBars } from './IFileNameHandleBars';
export interface IFileDropBoxProps {
    useDropBox?: boolean;
    maxUploadCount?: number;
    fileMaxSize?: number;
    fileWarnSize?: number;
    fileTypes?: IMIMETypesObject[];
    fileNameHandleBars: IFileNameHandleBars;
    setParentFilesData: (files: File[]) => void;
    style?: IReactCSSProperties;
    refreshId?: string;
    resetId: string;
}
export declare const changesFileDropBox: (keyof IFileDropBoxWPProps)[];
export interface IFileDropBoxWPProps {
    defaultPasteMode?: boolean;
    maxUploadCount: string;
    fileMaxSize?: string;
    fileWarnSize?: string;
    fileTypes?: string[];
    fileNameHandleBars: string;
}
//# sourceMappingURL=IFileDropBoxProps.d.ts.map