import * as PropTypes from 'prop-types';
import './Layer.Example.scss';
import { BaseComponent } from 'office-ui-fabric-react/lib/Utilities';
export declare class LayerContentExample extends BaseComponent<any, any> {
    static contextTypes: {
        message: PropTypes.Requireable<any>;
    };
    context: {
        message: string;
    };
    constructor();
    componentDidMount(): void;
    render(): JSX.Element;
}
export declare class LayerBasicExample extends BaseComponent<any, any> {
    static childContextTypes: {
        message: PropTypes.Requireable<any>;
    };
    constructor();
    getChildContext(): {
        'message': string;
    };
    render(): JSX.Element;
}
