import { IAuthentication } from '../interfaces/Authentication.js'; import { ILogger } from '../interfaces/Logger.js'; interface IStaticAuthOtions { validCredentials: { username: string; password: string; }[]; } export declare class StaticAuth implements IAuthentication { private validCredentials; private logger; constructor(options: IStaticAuthOtions, logger: ILogger); authenticate(username: string, password: string): Promise; } export {};