import type { ShortcutCommand } from './ShortcutCommand'; /** * Shortcut command for Bold * Windows: Ctrl + B * MacOS: Meta + B */ export declare const ShortcutBold: ShortcutCommand; /** * Shortcut command for Italic * Windows: Ctrl + I * MacOS: Meta + I */ export declare const ShortcutItalic: ShortcutCommand; /** * Shortcut command for Underline * Windows: Ctrl + U * MacOS: Meta + U */ export declare const ShortcutUnderline: ShortcutCommand; /** * Shortcut command for Clear Format * Windows: Ctrl + Space * MacOS: Meta + Space, this shortcut is the same as the default global spotlight shortcut, so it is invalid if the user keeps spotlight‘s. */ export declare const ShortcutClearFormat: ShortcutCommand; /** * Shortcut command for Undo 1 * Windows: Ctrl + Z * MacOS: Meta + Z */ export declare const ShortcutUndo: ShortcutCommand; /** * Shortcut command for Undo 2 * Windows: Alt + Backspace * MacOS: N/A */ export declare const ShortcutUndo2: ShortcutCommand; /** * Shortcut command for Redo 1 * Windows: Ctrl + Y * MacOS: N/A */ export declare const ShortcutRedo: ShortcutCommand; /** * @deprecated * Shortcut command for Redo 2 * Windows: N/A * MacOS: Meta + Shift + Z */ export declare const ShortcutRedoMacOS: ShortcutCommand; /** * Shortcut command for Redo 3 * Windows: Ctrl + Shift + Z * MacOS: Meta + Shift + Z */ export declare const ShortcutRedoAlt: ShortcutCommand; /** * Shortcut command for Bullet List * Windows: Ctrl + . (Period) * MacOS: Meta + . (Period) */ export declare const ShortcutBullet: ShortcutCommand; /** * Shortcut command for Numbering List * Windows: Ctrl + / (Forward slash) * MacOS: Meta + / (Forward slash) */ export declare const ShortcutNumbering: ShortcutCommand; /** * Shortcut command for Increase Font * Windows: Ctrl + Shift + . (Period) * MacOS: Meta + Shift + . (Period) */ export declare const ShortcutIncreaseFont: ShortcutCommand; /** * Shortcut command for Decrease Font * Windows: Ctrl + Shift + , (Comma) * MacOS: Meta + Shift + , (Comma) */ export declare const ShortcutDecreaseFont: ShortcutCommand; /** * Shortcut command for Intent list * Windows: Alt + Shift + Arrow Right * MacOS: N/A */ export declare const ShortcutIndentList: ShortcutCommand; /** * Shortcut command for Outdent list * Windows: Alt + Shift + Arrow Left * MacOS: N/A */ export declare const ShortcutOutdentList: ShortcutCommand;