import React from 'react'; declare const AppHoc: ({ children, companyId, apiKey, parentReduxState, isOpen, onClose, }: { children: React.ReactElement; companyId?: string | undefined; apiKey?: string | undefined; parentReduxState: string; isOpen: boolean; onClose: () => void; }) => import("react/jsx-runtime").JSX.Element; export default AppHoc;