import * as z from "zod/v3"; import { FacetFilter, FacetFilter$Outbound } from "./facetfilter.js"; export type PinRequest = { /** * The query strings for which the pinned result will show. */ queries?: Array | undefined; /** * Filters which restrict who should see the pinned document. Values are taken from the corresponding filters in people search. */ audienceFilters?: Array | undefined; /** * The document to be pinned. */ documentId?: string | undefined; }; /** @internal */ export type PinRequest$Outbound = { queries?: Array | undefined; audienceFilters?: Array | undefined; documentId?: string | undefined; }; /** @internal */ export declare const PinRequest$outboundSchema: z.ZodType; export declare function pinRequestToJSON(pinRequest: PinRequest): string; //# sourceMappingURL=pinrequest.d.ts.map