export interface UrlObj { url: string; target?: string; replace?: boolean; } export declare type JumpTarget = string | UrlObj; export declare function useJump(): (jumpTarget: JumpTarget) => void;