import { PropsWithChildren } from "react"; import { Config } from "@elephant-healthcare/config-provider"; interface Event extends Record { name: string; } interface ErrorEvent extends Event { error?: Error; } type FontConfig = Array<{ fontFamily: string; fontSrc: string; }>; interface ShellWrapperProps { configServicePath: string; appVersion: string; emitAnalyticsEvent: (event: Event) => void; emitErrorEvent: (event: ErrorEvent) => void; fontConfig: FontConfig; onConfigChange?: (config: Config) => void; } export const ShellWrapper: ({ configServicePath, appVersion, emitAnalyticsEvent, emitErrorEvent, onConfigChange, fontConfig, children, }: PropsWithChildren) => JSX.Element; //# sourceMappingURL=types.d.ts.map