import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * The level of visual distinction that should be given to a result. * * @remarks */ export declare const SearchResultProminenceEnum: { /** * A high-confidence result that should feature prominently on the page. */ readonly Hero: "HERO"; /** * May not be the best result but should be given additional visual distinction. */ readonly Promoted: "PROMOTED"; /** * Should not be distinct from any other results. */ readonly Standard: "STANDARD"; }; /** * The level of visual distinction that should be given to a result. * * @remarks */ export type SearchResultProminenceEnum = OpenEnum; /** @internal */ export declare const SearchResultProminenceEnum$inboundSchema: z.ZodType; /** @internal */ export declare const SearchResultProminenceEnum$outboundSchema: z.ZodType; //# sourceMappingURL=searchresultprominenceenum.d.ts.map