import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { CustomerFilter } from "./CustomerFilter"; import { CustomerSort } from "./CustomerSort"; export declare const CustomerQuery: core.serialization.ObjectSchema; export declare namespace CustomerQuery { interface Raw { filter?: CustomerFilter.Raw | null; sort?: CustomerSort.Raw | null; } }