import { AwsCredentialIdentity } from '@aws-sdk/types';
/**
 * Get the AWS account ID and partition from the provided credentials.
 *
 * @param credentials The AWS credentials to use for the request.
 * @returns An object containing the AWS account ID and partition for the provided credentials.
 */
export declare function getTokenInfo(credentials: AwsCredentialIdentity): Promise<{
    accountId: string;
    partition: string;
    arn: string;
}>;
//# sourceMappingURL=tokens.d.ts.map