import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateTenantDestinationRequest = { /** * The ID of the tenant. Required when using AdminApiKey authentication. */ tenantId: string; body: components.DestinationCreate; }; /** @internal */ export declare const CreateTenantDestinationRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateTenantDestinationRequest$Outbound = { tenant_id: string; body: components.DestinationCreate$Outbound; }; /** @internal */ export declare const CreateTenantDestinationRequest$outboundSchema: z.ZodType; export declare function createTenantDestinationRequestToJSON(createTenantDestinationRequest: CreateTenantDestinationRequest): string; export declare function createTenantDestinationRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createtenantdestination.d.ts.map