import { type ComponentPropsWithoutRef, type ReactNode } from "react"; /** * Props for the DatePickerOverlay component. */ export interface DatePickerOverlayProps extends ComponentPropsWithoutRef<"div"> { /** * The content to be rendered inside the overlay. */ children: ReactNode; } export declare const DatePickerOverlay: import("react").ForwardRefExoticComponent>;