import { z } from "zod"; import type { FunctionOptions } from "../../types/functions"; export declare const DeleteClientCredentialsSchema: z.ZodObject<{ clientId: z.ZodString; }, z.core.$strip>; export type DeleteClientCredentialsOptions = z.infer & FunctionOptions; export interface DeleteClientCredentialsResult { success: boolean; } export interface DeleteClientCredentialsSdkFunction { deleteClientCredentials: (options: DeleteClientCredentialsOptions) => Promise; } //# sourceMappingURL=schemas.d.ts.map