import { FC, IglooComponentProps, FormItemExtraConfig } from '../types'; export interface OutputMap { field: string[]; source: string[]; format?: string; formatType?: string; } interface OCRProps extends IglooComponentProps, FormItemExtraConfig { ocrConfig: { vendor: string; outputMap: OutputMap[]; }; } declare const OCR: FC; export default OCR;