import type App from '../app/index.js'; export interface Options { urlSanitizer?: (url: string) => string; titleSanitizer?: (title: string) => string; /** if present, tracker will remove hash symbol to present url as regular router url on replay level; * * applied BEFORE sanitizers. * * @example 'site.com/#/path' -> 'site.com/path' */ replaceHashSymbol?: boolean; } export default function (app: App, options?: Options): void;