import { IAwsProfile } from "../../@types/index"; /** * Returns the `userId`, `accountId`, `arn`, and `user` when passed * the key/secret key found in a user's `~/.aws/credentials` file. * * @param profile a profile from a user's `credentials` file */ export declare function getAwsIdentityFromProfile(profile: IAwsProfile): Promise<{ userId: string | undefined; accountId: string | undefined; arn: string | undefined; user: string | undefined; }>; //# sourceMappingURL=getAwsIdentityFromProfile.d.ts.map