import { ApolloClient, MutationOptions as ApolloMutationOptions } from "apollo-client"; import { DeleteUserAddress, DeleteUserAddressVariables } from "./gqlTypes/DeleteUserAddress"; import { CreateUserAddress, CreateUserAddressVariables } from "./gqlTypes/CreateUserAddress"; import { SetCustomerDefaultAddress, SetCustomerDefaultAddressVariables } from "./gqlTypes/SetCustomerDefaultAddress"; import { UpdateUserAddress, UpdateUserAddressVariables } from "./gqlTypes/UpdateUserAddress"; import { SetPassword, SetPasswordVariables } from "./gqlTypes/SetPassword"; import { PasswordChange, PasswordChangeVariables } from "./gqlTypes/PasswordChange"; import { AccountUpdate, AccountUpdateVariables } from "./gqlTypes/AccountUpdate"; export declare type MutationOptions = Omit, "mutation">; export declare const MUTATIONS: { AccountUpdate: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; AddressTypeUpdate: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; CreateUserAddress: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; DeleteUserAddress: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; PasswordChange: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; SetPassword: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; UpdateUserAddress: (client: ApolloClient, options: MutationOptions) => Promise, Record>>; }; export declare type MUTATIONS = typeof MUTATIONS;