interface AppleShortcut { altKey?: boolean; code: string; metaKey?: boolean; shiftKey?: boolean; } interface DefaultShortcut { altKey?: boolean; code: string; ctrlKey?: boolean; shiftKey?: boolean; } export declare type NativeShortcut = AppleShortcut | DefaultShortcut; export declare function isAppleShortcut(nativeShortcut: NativeShortcut): nativeShortcut is AppleShortcut; export declare function isDefaultShortcut(nativeShortcut: NativeShortcut): nativeShortcut is DefaultShortcut; export {};