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