import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CustomerGroup } from "./CustomerGroup"; import { Error_ } from "./Error_"; export declare const ListCustomerGroupsResponse: core.serialization.ObjectSchema; export declare namespace ListCustomerGroupsResponse { interface Raw { errors?: Error_.Raw[] | null; groups?: CustomerGroup.Raw[] | null; cursor?: string | null; } }