/**
 * Synchronizes app inner state (inside iframe) with dashboard routing, so app's route can be restored after refresh
 */
declare const useRoutePropagator: () => void;
/**
 * Synchronizes app inner state (inside iframe) with dashboard routing, so app's route can be restored after refresh
 *
 * Component uses useRoutePropagator(), but it can consume context in the same component where provider was used (e.g. _app.tsx)
 */
declare function RoutePropagator(): null;

export { RoutePropagator, useRoutePropagator };
