export declare type GoToAppProps = { appId?: string; blank?: boolean; search?: string; }; export declare const useGoToAppCallback: () => ({ appId, blank, search }?: GoToAppProps) => Promise; export declare const useGoToApp: ({ appId, blank, search, }?: GoToAppProps) => () => Promise;