import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IconConfig } from "./iconconfig.js"; export type FacetValue = { /** * The value that should be set in the FacetFilter when applying this filter to a search request. */ stringValue?: string | undefined; integerValue?: number | undefined; /** * An optional user-friendly label to display in place of the facet value. */ displayLabel?: string | undefined; /** * Defines how to render an icon */ iconConfig?: IconConfig | undefined; }; /** @internal */ export declare const FacetValue$inboundSchema: z.ZodType; export declare function facetValueFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=facetvalue.d.ts.map