import * as React from "react"; import * as PropTypes from "prop-types"; import { ExpandContext } from "../ExpandController"; export interface OuterContextProviderProps { context: ExpandContext; } export declare const OuterContextProviderPropTypes: { [P in keyof OuterContextProviderProps]: PropTypes.Validator; }; export declare class OuterContextProvider extends React.Component { static readonly propTypes: { context: PropTypes.Validator; }; static readonly childContextTypes: { changeExpandState: PropTypes.Validator; isExpanded: PropTypes.Validator; getState: PropTypes.Validator; }; getChildContext(): ExpandContext; render(): React.ReactNode; }