import { STSClient } from '@aws-sdk/client-sts'; import type { ServiceMethod, CreateAWSServiceParams, STSAssumeConfiguredRoleParams, STSGetCallerIdentityParams } from "../../types/index.js"; import { assumeConfiguredRole } from "./assumeConfiguredRole.js"; import { getCallerIdentity } from "./getCallerIdentity.js"; export declare function createSTSService({ profile, settings, ...forwardOpts }?: CreateAWSServiceParams): Promise<{ type: "aws.sts"; client: STSClient; assumeConfiguredRole: ServiceMethod; getCallerIdentity: ServiceMethod; }>;