import { EditorExtension } from "../../../EditorExtension";
export default class TrailingNode extends EditorExtension {
    options: any;
    constructor(options?: {});
    get name(): string;
    get defaultOptions(): {
        node: string;
        notAfter: string[];
    };
    get plugins(): any[];
}
