export interface GoToOptions {
    useHistory?: "push" | "replace" | boolean;
    url?: Partial<URL>;
}
export declare function gotoKey(key: string, options?: GoToOptions): void;
