import type { CommonOptions } from './common'; export declare function note(message?: string, title?: string, opts?: NoteOptions): void; export declare interface NoteOptions extends CommonOptions { format?: (line: string) => string }