import { Rejection, RouterRejection } from '../types/rejection'; import { ComputedRef } from 'vue'; import { ResolvedRoute } from '../types/resolved'; type RejectionUpdate = (rejection: Rejection) => void; type RejectionClear = () => void; type CurrentRejectionContext = { currentRejection: RouterRejection; currentRejectionRoute: ComputedRef; updateRejection: RejectionUpdate; clearRejection: RejectionClear; }; export declare function createCurrentRejection(): CurrentRejectionContext; export {};