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