import { ComputedRef, Ref } from 'vue'; export interface ReadingTimeOptions { /** Content to calculate the reading time */ content?: string | Ref; /** Selector of the content to calculate the reading time */ contentSelector?: string | Ref; /** Ref of the content to calculate the reading time */ contentRef?: Ref; /** * Words per minute * @default 150 */ velocity?: number | Ref; } export interface ReadingTimeReturn { /** Content to calculate the reading time */ content: ComputedRef; /** Number of words in the content */ wordCount: ComputedRef; /** Words per minute */ velocity: ComputedRef; /** Reading time in minutes */ duration: ComputedRef; } export declare function useReadingTime(options: ReadingTimeOptions): ReadingTimeReturn;