import { Credentials } from 'aws-sdk';
export declare class ProfileCredentialsCache {
    private readonly cache;
    constructor();
    set(profile: string, credentials: Credentials): void;
    get(profile: string): Credentials | undefined;
    has(profile: string): boolean;
}
