import type { SubtypeOf } from "@excalidraw/common/utility-types"; import type { ActionName } from "./types"; export type ShortcutName = SubtypeOf | "saveScene" | "imageExport" | "commandPalette" | "searchMenu"; export declare const getShortcutFromShortcutName: (name: ShortcutName, idx?: number) => string;