import { useReadingProgress } from './useReadingProgress'; export type HookProps = { targetEl?: string; rootEl?: string; }; export type ComponentProps = { children: (arg1: ReturnType) => JSX.Element; } & HookProps;