import { IComponentCredentialsPool } from './Interface'; export declare class CredentialsPool { componentCredentials: IComponentCredentialsPool; /** * Initialize to get all credentials */ initialize(): Promise; /** * Recursive function to get credential files * @param {string} dir * @returns {string[]} */ getFiles(dir: string): Promise; }