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