import { Editor, Block } from "slate"; import { TypeOptions } from "../options"; declare function increaseBlockIndent(opts: TypeOptions, editor: Editor, block: Block): void; declare function decreaseBlockIndent(opts: TypeOptions, editor: Editor, block: Block): void; declare function increaseIndent(opts: TypeOptions, editor: Editor): void; declare function decreaseIndent(opts: TypeOptions, editor: Editor): void; declare function createChanges(opts: TypeOptions): { decreaseBlockIndent: (editor: Editor, block: Block) => void; increaseBlockIndent: (editor: Editor, block: Block) => void; increaseIndent: (editor: Editor) => void; decreaseIndent: (editor: Editor) => void; }; export default createChanges; export { decreaseBlockIndent, increaseBlockIndent, decreaseIndent, increaseIndent, }; //# sourceMappingURL=index.d.ts.map