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 action types (with full metadata) 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. * * @alpha * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/actionTypesFullMetadata */ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, $queryParams: { branch?: _Core.FoundryBranch | undefined; objectTypeApiNames: Array<_Ontologies.ObjectTypeApiName>; pageSize?: _Core.PageSize | undefined; pageToken?: _Core.PageToken | undefined; } ]): Promise<_Ontologies.ListActionTypesFullMetadataResponse>; /** * Gets the full metadata associated with an action type. * * @alpha * * Required Scopes: [api:ontologies-read] * URL: /v2/ontologies/{ontology}/actionTypes/{actionType}/fullMetadata */ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [ ontology: _Ontologies.OntologyIdentifier, actionType: _Ontologies.ActionTypeApiName, $queryParams?: { branch?: _Core.FoundryBranch | undefined; } ]): Promise<_Ontologies.ActionTypeFullMetadata>; //# sourceMappingURL=ActionTypeFullMetadata.d.ts.map