import { NodeExtension } from "../../NodeExtension";
export default class Alignment extends NodeExtension {
    constructor();
    get name(): string;
    get schema(): any;
    commands({ type, schema }: {
        type: any;
        schema: any;
    }): (attrs: any) => (state: any, dispatch: any) => any;
}
