import { NextRouter } from 'next/router'; import { ReactElement } from 'react'; import { ProviderProps } from '../types'; /** * Tracks whether or not the user has interacted with the current page * * Returns a boolean as well as a function which takes a callback that will only be invoked when the user has interacted with the page * * Pass a NextRouter if you want it to reset the value when the route changes (recommended for Next.js apps) */ export declare function Provider({ router, timeout, children }: ProviderProps & { router?: NextRouter; }): ReactElement; //# sourceMappingURL=Provider.d.ts.map