export default CustomTrackDialog;
declare class CustomTrackDialog extends React.PureComponent<any, any, any> {
    constructor(props: any);
    constructor(props: any, context: any);
    render(): React.JSX.Element;
}
declare namespace CustomTrackDialog {
    let defaultProps: {};
    namespace propTypes {
        let onCancel: PropTypes.Validator<(...args: any[]) => any>;
        let title: PropTypes.Requireable<string>;
        let bodyProps: PropTypes.Requireable<any[]>;
        let children: PropTypes.Requireable<any[]>;
    }
}
import React from 'react';
import PropTypes from 'prop-types';
