import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type HotwordProximity = { windowBefore?: number | undefined; windowAfter?: number | undefined; }; /** @internal */ export declare const HotwordProximity$inboundSchema: z.ZodType; /** @internal */ export type HotwordProximity$Outbound = { windowBefore?: number | undefined; windowAfter?: number | undefined; }; /** @internal */ export declare const HotwordProximity$outboundSchema: z.ZodType; export declare function hotwordProximityToJSON(hotwordProximity: HotwordProximity): string; export declare function hotwordProximityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hotwordproximity.d.ts.map