export interface ApiFormFields { [module: string]: { field: string; type: string; }[]; } export interface Pagination { pageNo: number; limit: number; totalCount: number; } interface IState { rows: any[]; workflowTemplate: any[]; workflow: any[]; isLoading: boolean; isError: boolean; count: number; error: string; formData: any[]; fields: ApiFormFields | null; isSuccess: boolean; workflowAutomationId: {}; paginationModel: Pagination; } export declare const state: IState; export default state;