import { Dispatch, SetStateAction } from 'react'; import { DateRange } from '../model'; export interface ChartMonthSelectorProps { label?: string; onChange: Dispatch>; } export declare function ChartMonthSelector(props: ChartMonthSelectorProps): JSX.Element; export declare namespace ChartMonthSelector { var defaultProps: ChartMonthSelectorProps; }