import { MarkExtension } from "../../../MarkExtension";
export default class LinkNode extends MarkExtension {
    get name(): string;
    get schema(): any;
    commands({ type }: {
        type: any;
    }): (attrs: any) => any;
    pasteRules({ type }: {
        type: any;
    }): any[];
    get plugins(): any[];
}
