import './sentry'; import { ReactNode } from 'react'; import { DefaultTheme } from 'styled-components'; import { DocumentNode } from '@apollo/client'; import type { MakeApolloConfigFn } from '../components/Root'; type StartClientOptions = { makeApolloConfig?: MakeApolloConfigFn; currentUserQuery?: DocumentNode; onLogout?: () => void; }; declare const startClient: (routes: ReactNode, theme: DefaultTheme, options?: StartClientOptions) => void; export default startClient;