import { MarginProps } from '../../helpers'; import { ButtonProps } from '../Button'; export interface Localization { upload: string; showLess: string; showMore: string; canNotUploadTheseFiles: string; } export interface ValidatorConfig { message?: string; type: string; validator: (file: File) => boolean; } export interface Action extends Omit { label: string; } //# sourceMappingURL=types.d.ts.map