import { FormSchema } from "../../interfaces"; import type { RequestParamsOptions } from "../../utils/mapRequestParams"; export declare const resetForms: import("@tsed/redux-utils").ActionReducer; export declare const requestForms: import("@tsed/redux-utils").ActionReducer; export declare const receiveForms: import("@tsed/redux-utils").ActionReducer; export declare const failForms: import("@tsed/redux-utils").ActionReducer; export declare type GetFormsCB = (err: any, forms?: FormSchema[]) => void; export declare const getForms: (name: string, parameters: Partial, done?: GetFormsCB) => (dispatch: any, getState: any) => Promise; export declare const refreshForms: (name: string, done?: (...args: any[]) => void) => (dispatch: any, getState: any) => Promise;