import React__default, { CSSProperties, ElementRef } from 'react';
import { DateFields } from '@internationalized/date';
import { ElementProps } from '../../types/common.types.js';

interface Props extends ElementProps<'div'> {
    initialDate: number;
    options?: {
        label: string;
        value: number;
    }[];
    listClassName?: string;
    itemClassName?: string;
    listStyle?: CSSProperties;
    itemStyle?: CSSProperties;
    listType?: keyof DateFields;
    highlightRef: ElementRef<'div'>;
}
declare const _default: React__default.MemoExoticComponent<(props: Props) => JSX.Element>;

export { _default as default };
