export declare type AppRoute = { root: string; to: (route: string, opts?: Partial<{ absolutePath: boolean; newWindow: boolean; }>) => void; extend: (subroute: string, opts?: Partial<{ absolutePath: boolean; }>) => string; back: (fallbackRoute?: string) => void; }; export declare const useAppRoute: (appId?: string) => AppRoute;