import React from 'react'; interface Props { type?: string; loadingTemplate?: React.ReactElement; } declare const ChartLoading: ({ type, loadingTemplate }: Props) => JSX.Element; export default ChartLoading;