import { MarkSpec } from '../../prosemirror';
/**
 * @name link_mark
 */
export interface Definition {
    type: 'link';
    attrs: {
        href: string;
        title?: string;
    };
}
export declare const link: MarkSpec;
