import { ReactNode } from 'react'; export interface IApplyListProps { dialogVisible: boolean; btnDisabled: boolean; TableList: listType[]; checkValue: boolean; listClientType?: number; } export interface listType { title: string; type: string; state: applyState; operation?: ReactNode | undefined; appCode: string; statusDesc: string; clientDesc: string; } export declare enum OperationType { requestOnline = "request_online", requestOffline = "request_offline", requestCancel = "request_undo", requestRePublish = "request_republish" } export declare enum applyState { onlineAuditing = "online_auditing", online = "online", offlineAuditing = "offline_auditing", offline = "offline" }