export declare class AuthMethod {
    private readonly key;
    constructor(key: string);
    getKey(): string;
}
export declare const AuthMethods: {
    BASIC_AUTHORIZATION: AuthMethod;
    BEARER_AUTHORIZATION: AuthMethod;
};
