import * as React from 'react'; import { ILayerHostProps, ILayerHost } from './LayerHost.types'; export declare class LayerHost extends React.Component implements ILayerHost { hostId: string; rootRef: React.RefObject; constructor(props: ILayerHostProps); notifyLayersChanged(): void; shouldComponentUpdate(): boolean; componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; }