import { NodeExtension } from "../../NodeExtension";
export default class TodoList extends NodeExtension {
    get name(): string;
    get schema(): any;
    commands({ type, schema }: {
        type: any;
        schema: any;
    }): () => any;
    inputRules({ type }: {
        type: any;
    }): any[];
}
