import * as React from 'react'; import { BootOptions } from '../../components/ConfigProvider'; import { Express } from 'express'; export interface TranslationsPromises { [locale: string]: () => Promise; } export declare const createApp: (Component: React.ReactElement, userConfig: BootOptions) => Promise; declare const boot: () => void; export default boot;