import { DeckApi } from '../editor/deck-api'; import { ExportingApi } from '../export/exporting-api'; import { ViewerParityUiState } from './viewer-parity-ui.svelte'; /** Everything the Quick Access Toolbar's configurable commands act on. */ export interface QuickAccessCommandDeps { deck: DeckApi; exportingApi: ExportingApi; parityUi: ViewerParityUiState; } /** * Run a Quick Access Toolbar command by catalog id. Save/Undo/Redo keep their * dedicated title-bar buttons (they carry the undo state), so only the * options-configured remainder arrives here; an unknown id is a no-op. * * Extracted from `PowerPointViewer.svelte` to keep that file under the repo's * file-size budget. */ export declare function runQuickAccessCommand(id: string, deps: QuickAccessCommandDeps): void; //# sourceMappingURL=quick-access-commands.d.ts.map