import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { GetV1TokenInfoRequest, GetV1TokenInfoResponse } from "../models/operations/getv1tokeninfo.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get info about the current access token * * @remarks * Returns scope and resource information associated with the current access token. Use this endpoint to verify the following for the current access token: * * Resource (company, employee, contractor, or application) and resource owner * * Access level * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function introspectionGetInfo(client: GustoEmbeddedCore, request: GetV1TokenInfoRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=introspectionGetInfo.d.ts.map