import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type StoreFinderInteractiveFindPlaceNamesResponseItem = { /** * The ID for this company. This is not the URN. */ id?: string | undefined; /** * The name of the place. */ place?: string | undefined; }; export type StoreFinderInteractiveFindPlaceNamesResponse = { items?: Array | undefined; }; /** @internal */ export declare const StoreFinderInteractiveFindPlaceNamesResponseItem$inboundSchema: z.ZodType; export declare function storeFinderInteractiveFindPlaceNamesResponseItemFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const StoreFinderInteractiveFindPlaceNamesResponse$inboundSchema: z.ZodType; export declare function storeFinderInteractiveFindPlaceNamesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=storefinderinteractivefindplacenamesresponse.d.ts.map