/**
 * Download box container that wraps a chart
 * @author Gabe Abrams
 * @author Jackson Parsells
 */
import React from 'react';
declare type Props = {
    title: string;
    chartData: {
        [k: string]: string | number;
    }[];
    children: React.ReactNode;
};
declare const DownloadBox: React.FC<Props>;
export default DownloadBox;
