import Credentials from './models/credentials'; export interface AuthOptions { apiKey?: string; apiSecret?: string; } export default class Auth { /** * Get credentials from multiple sources in order of precedence: * 1. CLI options (--api-key, --api-secret) * 2. Environment variables (TB_KEY, TB_SECRET) * 3. ~/.testingbot file */ static getCredentials(options?: AuthOptions): Promise; private static getCredentialsFromFile; } //# sourceMappingURL=auth.d.ts.map