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