import { GetKeyword } from './plugins/keywords.plugin';
export interface ReplaceKeywordsConfig {
    getKeyword: GetKeyword;
}
/**
 *
 * @param html
 * @param config
 * @param config.getKeyword
 * @param getKeyword
 */
export declare function replaceKeywords(html: string, { getKeyword }: ReplaceKeywordsConfig): Promise<string>;
