import type { ALL_BLOCKS, BlockId } from '@curvenote/blocks'; import type { VersionQueryOpts } from '../../../models.js'; import { Block, Version } from '../../../models.js'; import type { ISession } from '../../../session/types.js'; export declare function getBlockAndLatestVersion(session: ISession, blockId: BlockId, query?: VersionQueryOpts): Promise<{ block: Block; version?: Version; }>; //# sourceMappingURL=getBlockAndLatestVersion.d.ts.map