import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; export type DeleteSessionRequest = { id: string; }; /** * Response for status 200 */ export type DeleteSessionResponse = { message: string; }; /** @internal */ export type DeleteSessionRequest$Outbound = { id: string; }; /** @internal */ export declare const DeleteSessionRequest$outboundSchema: z.ZodMiniType; export declare function deleteSessionRequestToJSON(deleteSessionRequest: DeleteSessionRequest): string; /** @internal */ export declare const DeleteSessionResponse$inboundSchema: z.ZodMiniType; export declare function deleteSessionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=delete-session.d.ts.map