import * as z from "zod/v3"; export type SearchQueryInputBody = { /** * Specify fields to only return in the response. If you provide fields and omit `host.services.port`, `host.services.transport_protocol`, and `host.services.protocol`, then `matched_services` will not be returned in the response. */ fields?: Array | null | undefined; /** * Number of results to return to per page. The default and maximum is 100. */ pageSize?: number | null | undefined; /** * page token for the requested page of search results */ pageToken?: string | undefined; /** * CenQL query string to search upon */ query: string; }; /** @internal */ export type SearchQueryInputBody$Outbound = { fields?: Array | null | undefined; page_size?: number | null | undefined; page_token?: string | undefined; query: string; }; /** @internal */ export declare const SearchQueryInputBody$outboundSchema: z.ZodType; export declare function searchQueryInputBodyToJSON(searchQueryInputBody: SearchQueryInputBody): string; //# sourceMappingURL=searchqueryinputbody.d.ts.map