import { ActionCreatorsBag, ExtendableAsyncActionCreator } from '../types/asyncCreator';
interface WithAsyncLoad {
    <ActionType extends string, Steps extends string>(basicCreator: ActionCreatorsBag<ActionType, Steps>): ExtendableAsyncActionCreator<ActionType, Steps>;
}
export declare const withLoad: WithAsyncLoad;
export {};
