import { UniversalCompiler, SimpleCompiler } from "../types/compiler"; export interface NotifierOptions { title?: string; icon?: string; sound?: boolean; message?: string; notify?: boolean; } export declare function startNotifying(compiler: UniversalCompiler | SimpleCompiler, options: NotifierOptions): { stop: () => void; options: NotifierOptions; };