declare namespace _exports {
    export { LinkAttributesOptions };
}
declare const _exports: import('markdown-it').PluginWithOptions<LinkAttributesOptions>;
export = _exports;
type LinkAttributesOptions = {
    /**
     * Object or function to generate attributes for links.
     */
    attributes: {
        [x: string]: string;
    } | ((arg0: {
        [x: string]: string;
    }) => {
        [x: string]: string;
    });
};
