import { FunctionComponent } from 'react'; import { ChartInterface } from '../types'; interface Props extends ChartInterface { id: number; } declare const CreatePieChart: FunctionComponent; export default CreatePieChart;