/// <reference types="hoist-non-react-statics" />
import * as React from 'react';
import PropTypes from 'prop-types';
import ModalVisibleCtl from '../../../../stores/ModalVisibleCtl';
interface IDescProps {
    className?: string;
    title: string;
    description: string;
    onChange: (value: {
        title: string;
        description: string;
    }) => void;
    disabled?: boolean;
}
export declare class Description extends React.Component<IDescProps, any> {
    static contextTypes: {
        replaceVariable: PropTypes.Requireable<(...args: any[]) => any>;
    };
    modalCtl: ModalVisibleCtl;
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IDescProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IDescProps, any> & typeof Description) | (React.FunctionComponent<IDescProps> & typeof Description), {}>;
export default _default;
