import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { HotwordProximity, HotwordProximity$Outbound } from "./hotwordproximity.js"; export type Hotword = { regex?: string | undefined; proximity?: HotwordProximity | undefined; }; /** @internal */ export declare const Hotword$inboundSchema: z.ZodType; /** @internal */ export type Hotword$Outbound = { regex?: string | undefined; proximity?: HotwordProximity$Outbound | undefined; }; /** @internal */ export declare const Hotword$outboundSchema: z.ZodType; export declare function hotwordToJSON(hotword: Hotword): string; export declare function hotwordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hotword.d.ts.map