import type { ComponentType } from 'react'; type OptionsT = { dontHydrate?: boolean; initialState?: unknown; }; /** * Prepares and launches the app at client side. * @param Application Root application component * @param [options={}] Optional. Additional settings. */ export declare function launchClient(Application: ComponentType, options?: OptionsT): Promise; export {};