import type { WorkspaceEventBus } from '@scalar/workspace-store/events'; /** * Creates a temporary operation with a unique path, emits its creation on the event bus, * then navigates to the operation and focuses the address bar if successful. * @param documentName - The name of the document to add the operation to * @param existingPaths - Set of existing operation paths for uniqueness checking * @param eventBus - The workspace event bus to emit events on */ export declare const createTempOperation: (documentName: string, options: { existingPaths: Set; eventBus: WorkspaceEventBus; tags?: string[]; }) => void; //# sourceMappingURL=create-temp-operation.d.ts.map