import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type StopRoomEgressRequest = { id: string; }; export type StopRoomEgressResponse = { /** * HTTP response content type for this operation */ contentType: string; /** * HTTP response status code for this operation */ statusCode: number; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse: Response; /** * Error */ error?: components.ErrorT | undefined; }; /** @internal */ export declare const StopRoomEgressRequest$inboundSchema: z.ZodType; /** @internal */ export type StopRoomEgressRequest$Outbound = { id: string; }; /** @internal */ export declare const StopRoomEgressRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace StopRoomEgressRequest$ { /** @deprecated use `StopRoomEgressRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StopRoomEgressRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StopRoomEgressRequest$Outbound` instead. */ type Outbound = StopRoomEgressRequest$Outbound; } export declare function stopRoomEgressRequestToJSON(stopRoomEgressRequest: StopRoomEgressRequest): string; export declare function stopRoomEgressRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const StopRoomEgressResponse$inboundSchema: z.ZodType; /** @internal */ export type StopRoomEgressResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; error?: components.ErrorT$Outbound | undefined; }; /** @internal */ export declare const StopRoomEgressResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace StopRoomEgressResponse$ { /** @deprecated use `StopRoomEgressResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StopRoomEgressResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StopRoomEgressResponse$Outbound` instead. */ type Outbound = StopRoomEgressResponse$Outbound; } export declare function stopRoomEgressResponseToJSON(stopRoomEgressResponse: StopRoomEgressResponse): string; export declare function stopRoomEgressResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stoproomegress.d.ts.map