import { buildBlockData } from './buildBlockData'; import { decreaseBlockDepth } from './decreaseBlockDepth'; import { deleteBlock } from './deleteBlock'; import { duplicateBlock } from './duplicateBlock'; import { focusBlock } from './focusBlock'; import { getBlock } from './getBlock'; import { getBlockSlate } from './getBlockSlate'; import { increaseBlockDepth } from './increaseBlockDepth'; import { insertBlock } from './insertBlock'; import { mergeBlock } from './mergeBlock'; import { moveBlock } from './moveBlock'; import { splitBlock } from './splitBlock'; import { toggleBlock } from './toggleBlock'; import { updateBlock } from './updateBlock'; export declare const Blocks: { insertBlock: typeof insertBlock; deleteBlock: typeof deleteBlock; moveBlock: typeof moveBlock; focusBlock: typeof focusBlock; splitBlock: typeof splitBlock; increaseBlockDepth: typeof increaseBlockDepth; decreaseBlockDepth: typeof decreaseBlockDepth; duplicateBlock: typeof duplicateBlock; updateBlock: typeof updateBlock; toggleBlock: typeof toggleBlock; getBlock: typeof getBlock; getBlockSlate: typeof getBlockSlate; buildBlockData: typeof buildBlockData; mergeBlock: typeof mergeBlock; }; export type Blocks = typeof Blocks; //# sourceMappingURL=index.d.ts.map