import type React from 'react'; export declare const PALETTE_PATH = "/REACT_BUDDY_PALETTE"; export declare const URL_CHANGE_EVENT = "urlchange"; export type RouteProps = { path: string; exact?: boolean; children: React.JSX.Element; }; export declare const useRoute: (path: string, exact?: boolean) => boolean; export declare function isMatchPath(path: string, exact?: boolean): boolean; export declare function historyPush(url: string): void;