export declare class Notification { private errors; constructor(); addError(error: string): void; hasError(): boolean; getErrors(): string; reset(): void; }