import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CaptureInteractiveFindResponseItem = { /** * This can be an address Id or a container Id for further results. */ id?: string | undefined; /** * If the Type is 'Address' then the Id can be passed to the Retrieve service. Any other Id should be passed as the Container to a further Find request to get more results. */ type?: string | undefined; /** * The name of the result. */ text?: string | undefined; /** * A list of number ranges identifying the matched characters in the Text and Description. */ highlight?: string | undefined; /** * Descriptive information about the result. */ description?: string | undefined; }; export type CaptureInteractiveFindResponse = { items?: Array | undefined; }; /** @internal */ export declare const CaptureInteractiveFindResponseItem$inboundSchema: z.ZodType; export declare function captureInteractiveFindResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CaptureInteractiveFindResponse$inboundSchema: z.ZodType; export declare function captureInteractiveFindResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=captureinteractivefindresponse.d.ts.map