interface NotifyProps { message?: string; error?: Error; } export declare class Notify { private constructor(); static info(props: NotifyProps): void; static success(props: NotifyProps): void; static warning(props: NotifyProps): void; static error(props: NotifyProps): void; } export {};