import { ExtendableBasicActionCreator, InjectPayload } from '../types/creator';
interface WithLoad {
    <ActionType extends string>(basicCreator: Omit<ExtendableBasicActionCreator<ActionType>, 'load'> & {
        load?: InjectPayload<ActionType>;
    }): ExtendableBasicActionCreator<ActionType>;
}
export declare const withLoad: WithLoad;
export {};
