import { IServiceContainer } from '@aesop-fables/containr'; import { IDataCommand } from './Types'; import { IMutation, Mutation } from '../hooks/useMutation'; import { DataStore } from '../DataStore'; export declare type MutationCommandParams = Params & { mutation: IMutation | Mutation; }; export declare class MutationCommand implements IDataCommand> { private readonly container; private readonly dataStore; constructor(container: IServiceContainer, dataStore: DataStore); execute(params: MutationCommandParams): Promise; }