import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type NtripDataStream = { authentication?: Array | null | undefined; bitrate?: number | undefined; carrierInfo?: string | undefined; casterMountPoint?: string | undefined; compressionOrEncryption?: string | undefined; countryCode?: string | undefined; dataFormat?: string | undefined; fee?: boolean | undefined; formatDetails?: string | undefined; generator?: string | undefined; latitude?: string | undefined; longitude?: string | undefined; misc?: string | undefined; navSystem?: string | undefined; network?: string | undefined; nmea?: boolean | undefined; solution?: string | undefined; sourceIdentifier?: string | undefined; }; /** @internal */ export declare const NtripDataStream$inboundSchema: z.ZodType; export declare function ntripDataStreamFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ntripdatastream.d.ts.map