export declare class ReadingProgress { private rp; constructor({ rootEl, targetEl }: { rootEl?: string; targetEl?: string; }); get rootSelector(): HTMLElement | (Window & typeof globalThis) | null; getViewportHeight: () => number; getProgress: () => number; }