import { PageConfigTypes } from "../../../custom-types/pageConfig-types";
/**
 * @param  method - only accepts 'add' or 'set'
 * @param  add -> to append the text to the existing text
 * @param  set -> cleans the existing text and writes new text
 */
export default function (method: string, value: string, pageConfig: PageConfigTypes): Promise<void>;
