import React from "react"; import { FormItemProps } from "antd"; export declare type FactorsInputProps = { size?: 'large' | 'default'; className?: string; moduleKey?: string; objectType?: 'IDCARD' | 'MAC' | 'IMSI' | 'FACE' | 'VEHICLE'; optionType?: 'search_box' | 'others'; dicColName?: string; showMac?: Boolean; showFaceSource?: Boolean; checked?: Boolean; showCamera?: Boolean; suffixRender?: (item: any) => React.ReactNode; prefixRender?: (item: any) => React.ReactNode; placeholder?: string; fieldProps?: FormItemProps; PopHistoryProps?: any; help?: string; max?: number; method?: 'push' | 'replace' | 'open'; }; export declare type PopHistoryProps = { dataSource: any[]; onClick: (item: any) => void; keyword?: string; className?: string; objType?: string; typeData?: { key: string; text: string; }[]; isList?: Boolean; isRegExpCar?: Boolean; dossierlink?: Boolean; typelink?: Boolean; renderCloseBtn?: (item: any) => void; setObjType?: (type: string) => void; children?: React.ReactNode; };