import { OnInit, OnDestroy } from '@angular/core';
import { BillComponent } from '../bill/bill.component';
import { Subscription } from 'rxjs';
import { ThemeService, ThemeModel } from '../services/theme.service';
import { CurrentApiService } from 'dbweb-core';
export declare class NoticeComponent implements OnInit, OnDestroy {
    private theme;
    private api;
    bill: BillComponent;
    hostClass: boolean;
    options: any;
    subs: Subscription[];
    themeModel: ThemeModel;
    content: string;
    contentHTML: string;
    constructor(theme: ThemeService, api: CurrentApiService);
    ngOnDestroy(): void;
    ngOnInit(): void;
}
