import * as React from 'react'; import type { BarProps } from '@mui/x-charts/BarChart'; export interface AnimatedRangeBarElementProps extends BarProps { /** * If true, the bar is hidden and will animate to a collapsed state. */ hidden?: boolean; } export declare function AnimatedRangeBarElement(props: AnimatedRangeBarElementProps): React.JSX.Element;