import ICredential from './icredential'; import Config from './config'; export { Config }; export default class Credential implements ICredential { credential: ICredential; constructor(config?: Config, runtime?: { [key: string]: any; }); getAccessKeyId(): Promise; getAccessKeySecret(): Promise; getSecurityToken(): Promise; getBearerToken(): string; getType(): string; private load; }