type SEOParams = {
    /** New title tag value */
    title?: string;
    /** New meta description tag content */
    description?: string;
    /** New meta keywords tag content */
    keywords?: string;
};
/**
 * Updates HTML SEO tags
 *
 * @param seoParams - SEO params
 */
declare function updateSEOParams(seoParams: SEOParams): void;
export default updateSEOParams;
export type { SEOParams };
