import { AuthMethod } from './auth.method'; export declare class AuthBasic extends AuthMethod { user: string; pass: string; constructor(user?: string, pass?: string); getPass(): string; fromValue(value: string): Error; toValue(): string; }