import React from 'react';
import type { ComposableProps } from '../../../lib/slot';
export interface DatePickerCalendarProps extends ComposableProps<'div'> {
/**
* Calendar content (optional, defaults to Calendar component).
*/
children?: React.ReactNode;
/**
* Portal wrapper class name overrides.
*/
portalClassName?: string;
/**
* Portal wrapper inline styles.
*/
portalStyle?: React.CSSProperties;
}
/**
* DatePickerCalendar Component
*
* A composable component for the calendar popup of a DatePicker.
* Typically used within DatePicker.
*
* @public
*
* @example
* ```tsx
*
*
*
*
*
*
* ```
*
* @remarks
* - Automatically renders in a portal when DatePicker is open
* - Supports custom calendar content via children
* - Handles positioning and backdrop automatically
*/
export declare const DatePickerCalendar: React.ForwardRefExoticComponent>;
//# sourceMappingURL=DatePickerCalendar.d.ts.map