/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { ILayerHostProps } from './LayerHost.types';
export declare class LayerHost extends BaseComponent<ILayerHostProps, {}> {
    shouldComponentUpdate(): boolean;
    componentDidMount(): void;
    componentWillUnmount(): void;
    render(): JSX.Element;
}
