export declare const egApiTake: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
    leafs: unknown;
}, string>;
export declare const egApiRequest: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
    leafs: unknown;
}, string>;
export declare const egApiCancel: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
    leafs: unknown;
}, string>;
export declare const egApiSuccess: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
    leafs: unknown;
    response?: unknown;
}, string>;
export declare const egApiFailure: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
    leafs: unknown;
    error?: unknown;
}, string>;
export declare const clearApiResponse: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
    payload: void;
    type: string;
} | undefined, string>;
export declare const clearApisResponse: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
    payload: void;
    type: string;
}[] | undefined, string>;
export declare const destroyApi: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string[] | undefined, string>;
