import { z } from "zod"; import type { PaginatedSdkFunction } from "../../types/functions"; import type { ClientCredentialsItem } from "@zapier/zapier-sdk-core/v0/schemas/client-credentials"; export declare const ListClientCredentialsQuerySchema: z.ZodObject<{ pageSize: z.ZodOptional; maxItems: z.ZodOptional; cursor: z.ZodOptional; }, z.core.$strip>; export type ListClientCredentialsOptions = z.infer; export interface ListClientCredentialsPage { data: ClientCredentialsItem[]; nextCursor?: string; } export interface ListClientCredentialsSdkFunction { listClientCredentials: PaginatedSdkFunction; } //# sourceMappingURL=schemas.d.ts.map