import { FC } from 'react'; import { FileModel } from '@nimles/models'; interface Props { value?: string; onChange: (image: FileModel) => void; organizationId?: string; } export declare const ImageEditor: FC; export {};