export default RuleChainSiderContainer;
declare class RuleChainSiderContainer extends React.Component<any, any, any> {
    static propTypes: {
        children: PropTypes.Requireable<any>;
        title: PropTypes.Requireable<string>;
        icon: PropTypes.Requireable<string>;
        content: PropTypes.Requireable<any>;
        extra: PropTypes.Requireable<any>;
        titleStyle: PropTypes.Requireable<object>;
        contentStyle: PropTypes.Requireable<object>;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';
