export declare abstract class AuthMethod { abstract fromValue(value: string): Error; abstract toValue(): string; }