import { IAwsCredentials, IAwsProfile } from "../../@types/index"; /** * **convertProfileToApiCredential** * * Converts the `IAwsProfile` format (which mimics the snake_case naming you have in the credentials file) and * converts it to an `IAwsCredentials` shape which can be used directly in credentializing an * API call. * * **Errors:** * - `do-devops/invalid-aws-profile` */ export declare function convertProfileToApiCredential(profile: IAwsProfile): IAwsCredentials; //# sourceMappingURL=convertProfileToApiCredential.d.ts.map