import { NodeExtension } from "../../../NodeExtension";
export default class HardBreak extends NodeExtension {
    get name(): string;
    get schema(): any;
    keys({ type }: {
        type: any;
    }): {
        "Mod-Enter": any;
        "Shift-Enter": any;
    };
    commands({ type }: {
        type: any;
    }): () => (state: any, dispatch: any) => any;
}
