import React from 'react';
import type { GridItemProps, HorizontalFill, VerticalFill } from '../__types';
declare type Props = {
    itemProps: GridItemProps[] | null;
    verticalFill: VerticalFill;
    horizontalFill: HorizontalFill;
    isAnimatedFill: boolean;
    isZeros: boolean;
    clickHandler: (props: GridItemProps) => GridItemProps;
};
declare const Chart: React.FC<Props>;
export default Chart;
