import React from 'react'; import type { dh } from '@deephaven/jsapi-types'; export declare const ClientContext: React.Context; export type ClientBootstrapProps = { /** URL of the server to connect to */ serverUrl: string; /** Connection options to pass to CoreClient when connecting */ options?: dh.ConnectOptions; /** * The children to render wrapped with the ClientContext. * Will not render children until the client is created. */ children: React.ReactNode; }; /** * ClientBootstrap component. Handles creating the client. */ export declare function ClientBootstrap({ serverUrl, options, children, }: ClientBootstrapProps): JSX.Element; export default ClientBootstrap; //# sourceMappingURL=ClientBootstrap.d.ts.map