import { PureComponent, PropsWithoutRef, RefAttributes, ForwardRefExoticComponent, ComponentType } from 'react'; export type CesiumProp = { cesium: C; }; export type CesiumInsideComponentType = { cesiumElement: E; } & PureComponent>; export type CesiumHOCComponentType = ForwardRefExoticComponent & RefAttributes>>; export type WithContextProps = P & CesiumProp; export type WithContextType = ComponentType>; export declare const withCesium: (Component: WithContextType) => ForwardRefExoticComponent & RefAttributes>>;