import React from "react"; import { Bar as AntBar } from "@ant-design/plots"; declare type AntBarProps = typeof AntBar; export interface BarProps extends React.ComponentProps { } declare const Bar: (props: BarProps) => JSX.Element; export default Bar;