import * as z from "zod/v3"; export type GenerateOtpRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; }; /** @internal */ export type GenerateOtpRequest$Outbound = { companyId: string; connectionId: string; }; /** @internal */ export declare const GenerateOtpRequest$outboundSchema: z.ZodType; export declare function generateOtpRequestToJSON(generateOtpRequest: GenerateOtpRequest): string; //# sourceMappingURL=generateotp.d.ts.map