export declare function modifyHtmlHrefs(params: {
    html: string;
    getModifiedHref: (href: string) => string;
}): {
    modifiedHtml: string;
};
