import React from 'react';
import { MonthDayPickerValue } from '../month-day-picker';
export declare type MonthDayPickerItemValue = MonthDayPickerValue;
export interface MonthDayPickerItemProps {
    value?: MonthDayPickerItemValue;
    onChange?: (value: MonthDayPickerItemValue) => void;
    children?: React.ReactNode;
}
export default class MonthDayPickerItem extends React.Component<MonthDayPickerItemProps> {
    render(): JSX.Element;
}
