import * as notifications from './notifications'; import * as editor from './editor'; import * as source from './source'; import * as error from './error'; import * as correction from './correction'; import * as glyph from './glyph'; export interface Action { type: 'action'; action: string; } export declare const actions: { notifications: typeof notifications; editor: typeof editor; source: typeof source; error: typeof error; correction: typeof correction; glyph: typeof glyph; };