import * as React from 'react';
type PropTypes = {
    datum?: number;
    chartScaleType: 'prem' | 'infant' | 'smallChild' | 'biggerChild';
};
declare function CustomGridComponent({ datum, chartScaleType, ...otherProps }: PropTypes): React.JSX.Element;
export default CustomGridComponent;
