export interface KeyboardShortcut {
	metaKey?: boolean;
	altKey?: boolean;
	shiftKey?: boolean;
	keys: string[];
}
