1import { Command } from "../types";
2import { TextApi, TextState } from "..";
3export declare type AlterLineFunction = (line: string, index: number) => string;
4/**
5 * Inserts insertionString before each line
6 */
7export declare function insertBeforeEachLine(selectedText: string, insertBefore: string | AlterLineFunction): {
8    modifiedText: string;
9    insertionLength: number;
10};
11export declare const makeList: (state0: TextState, api: TextApi, insertBefore: string | AlterLineFunction) => void;
12export declare const unorderedListCommand: Command;
13export declare const orderedListCommand: Command;
14export declare const checkedListCommand: Command;
15