export interface IProps { searchKey: string; selectKey: string; getList: (params: any) => void; getDeveloperList: (value: string) => Promise; setDeveloperId: (value: string) => void; setSearchKey: (value: string) => void; setSelectKey: (value: string) => void; appCategoryCodeTree: appCategoryCodeTreeProps[]; setBodyParam: (param: any) => void; state: any; exportOrderInfo: (params: any) => Promise; getProcessorList: (value: string) => Promise; } export interface devListItemProps { developerDingCorpId: string; developerOrgName: string; } export declare enum goodsState { onlineAuditing = "online_auditing", online = "online", offlineAuditing = "offline_auditing", offline = "offline" } export interface appCategoryCodeTreeProps { title: string; value: string; children?: appCategoryCodeTreeProps[]; } export interface processorListItemProps { processorName: string; processorUnionId: string; }