/// <reference types="react" />
import * as PropTypes from 'prop-types';
import './Layer.Example.scss';
import '../../../common/_exampleStyles.scss';
import { BaseComponent } from '../../../Utilities';
export declare class LayerContentExample extends BaseComponent<{}, {
    time: string;
}> {
    static contextTypes: {
        message: PropTypes.Requireable<any>;
    };
    context: {
        message: string;
    };
    constructor(props: {});
    componentDidMount(): void;
    render(): JSX.Element;
}
export declare class LayerBasicExample extends BaseComponent<{}, {
    showLayer: boolean;
}> {
    static childContextTypes: {
        message: PropTypes.Requireable<any>;
    };
    constructor(props: {});
    getChildContext(): {
        'message': string;
    };
    render(): JSX.Element;
    private _onChange(ev, checked);
}
