import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Targets: { readonly Host: "host"; readonly Web: "web"; readonly Cert: "cert"; readonly Unknown: "unknown"; }; export type Targets = OpenEnum; export type AlternativeQuery = { /** * An alternative query that may be used. */ query: string; /** * The types of Platform data records (host, cert, and web) that can be targeted by the alternative query. */ targets: Array | null; }; /** @internal */ export declare const Targets$inboundSchema: z.ZodType; /** @internal */ export declare const AlternativeQuery$inboundSchema: z.ZodType; export declare function alternativeQueryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativequery.d.ts.map