import { Chain } from '@ephox/agar'; import { Editor } from '../../alien/EditorTypes'; export interface ActionChains { cContentKeypress: (code: number, modifiers?: Record) => Chain; cContentKeydown: (code: number, modifiers?: Record) => Chain; cContentKeystroke: (code: number, modifiers?: Record) => Chain; cUiKeydown: (code: number, modifiers?: Record) => Chain; } export declare const ActionChains: ActionChains; //# sourceMappingURL=ActionChains.d.ts.map