import { Ref } from 'vue'; type RouteLike = { fullPath?: string; name?: string; } & Record; /** * Simple per-route scroll position helper. * * - Stores `window.scrollY` for the route we leave * - Restores it when we navigate back to the same route * * Intended to be used with a reactive current route ref: * useRouteScrollPositions(currentRouteRef) */ export declare function useRouteScrollPositions(currentRoute: Ref): { scrollPositions: Ref, Record>; }; export {};