import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Rtsp = { auth?: string | undefined; commands?: Array | null | undefined; server?: string | undefined; wwwAuth?: string | undefined; }; /** @internal */ export declare const Rtsp$inboundSchema: z.ZodType; export declare function rtspFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rtsp.d.ts.map