import type { ReactElement } from 'react'; declare type DayProps = { value?: Date | null; isSelected: boolean; isBordered: boolean; isDisabled: boolean; onChange: (nextValue: Date | null) => void; }; export declare function DayComponent({ value, isSelected, isBordered, isDisabled, onChange, }: DayProps): ReactElement; export declare namespace DayComponent { var defaultProps: { value: null; }; } declare const _default: import("react").MemoExoticComponent; export default _default;