export declare class ToastrService {
    private toastSubject;
    toastState$: import("rxjs").Observable<{
        message: string;
        type: string;
    }>;
    constructor();
    show(message?: string, type?: string): void;
}
