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