import { DeletionResponse, MutationAddCustomersToGroupArgs, MutationCreateCustomerGroupArgs, MutationDeleteCustomerGroupArgs, MutationRemoveCustomersFromGroupArgs, MutationUpdateCustomerGroupArgs, MutationDeleteCustomerGroupsArgs, QueryCustomerGroupArgs, QueryCustomerGroupsArgs } from '@vendure/common/lib/generated-types'; import { PaginatedList } from '@vendure/common/lib/shared-types'; import { CustomerGroup } from '../../../entity/customer-group/customer-group.entity'; import { CustomerGroupService } from '../../../service/services/customer-group.service'; import { RequestContext } from '../../common/request-context'; import { RelationPaths } from '../../decorators/relations.decorator'; export declare class CustomerGroupResolver { private customerGroupService; constructor(customerGroupService: CustomerGroupService); customerGroups(ctx: RequestContext, args: QueryCustomerGroupsArgs, relations: RelationPaths): Promise>; customerGroup(ctx: RequestContext, args: QueryCustomerGroupArgs, relations: RelationPaths): Promise; createCustomerGroup(ctx: RequestContext, args: MutationCreateCustomerGroupArgs): Promise; updateCustomerGroup(ctx: RequestContext, args: MutationUpdateCustomerGroupArgs): Promise; deleteCustomerGroup(ctx: RequestContext, args: MutationDeleteCustomerGroupArgs): Promise; deleteCustomerGroups(ctx: RequestContext, args: MutationDeleteCustomerGroupsArgs): Promise; addCustomersToGroup(ctx: RequestContext, args: MutationAddCustomersToGroupArgs): Promise; removeCustomersFromGroup(ctx: RequestContext, args: MutationRemoveCustomersFromGroupArgs): Promise; }