import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DvrIpPartitionCapability } from "./dvrippartitioncapability.js"; export type DvrIp = { accessUrl?: string | undefined; functionCapability?: string | undefined; functionList?: string | undefined; hardDrive?: string | undefined; languageSupport?: string | undefined; networkStatus?: string | undefined; oemInfo?: string | undefined; partitionCapability?: DvrIpPartitionCapability | undefined; serial?: string | undefined; splitScreenCapability?: string | undefined; version?: string | undefined; wirelessAlarmCapability?: string | undefined; }; /** @internal */ export declare const DvrIp$inboundSchema: z.ZodType; export declare function dvrIpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dvrip.d.ts.map