import { Program, Watcher, RawValue, RawMap } from "./watcher"; import { HTMLWatcher } from "./html"; export declare class Notice { program: Program; id: RawValue; type: RawValue; element: HTMLElement; name: string; time: number; constructor(program: Program, id: RawValue, type: RawValue); clear(): void; } export declare class NotifyWatcher extends Watcher { html: HTMLWatcher; notices: RawMap; root: HTMLElement; scroller: HTMLElement; wrapper: HTMLElement; setup(): void; }