import type { ComputedRef, MaybeRefOrGetter } from 'vue'; import type { SEO } from '../types'; interface SEOStats { progress: number; color: 'error' | 'warning' | 'success'; } interface UseSeoStatsReturn { title: ComputedRef; description: ComputedRef; computeColor: (score: number) => 'error' | 'warning' | 'success'; } export declare function useSeoStats(options: MaybeRefOrGetter): UseSeoStatsReturn; export {};