import { ExtendableBasicActionCreator } from '../types/creator';
interface GetActionCreator {
    <ActionType extends string>(actionType: ActionType): ExtendableBasicActionCreator<ActionType>;
}
export declare const getCreator: GetActionCreator;
export {};
