import { Block, Editor } from "slate"; import { TypeOptions } from "../options"; export default function createQueries(opts: TypeOptions): { getIndentationLevel: (editor: Editor, block: Block) => any; isIndentable: (editor: Editor, block: Block) => boolean; getIndentableBlocks: (editor: Editor) => import("immutable").Iterable; canBeIndented: (editor: Editor) => any; canBeOutdented: (editor: Editor) => any; }; //# sourceMappingURL=index.d.ts.map