import type * as _Core from "@osdk/foundry.core"; import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client"; import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2"; import type * as _Ontologies from "../_components.js"; /** * Lists the query types for the given Ontology. * * Each page may be smaller than the requested page size. However, it is guaranteed that if there are more * results available, at least one result will be present in the response. * * @public * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/queryTypes */ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, $queryParams?: { pageSize?: _Core.PageSize | undefined; pageToken?: _Core.PageToken | undefined; } ]): Promise<_Ontologies.ListQueryTypesResponseV2>; /** * Gets a specific query type with the given API name. * * @public * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/queryTypes/{queryApiName} */ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, queryApiName: _Ontologies.QueryApiName, $queryParams?: { version?: _Ontologies.FunctionVersion | undefined; sdkPackageRid?: _Ontologies.SdkPackageRid | undefined; sdkVersion?: _Ontologies.SdkVersion | undefined; } ]): Promise<_Ontologies.QueryTypeV2>; //# sourceMappingURL=QueryType.d.ts.map