import { PropsWithChildren } from 'react'; import { DataGridPickerProps } from '../DataGridPicker'; import { DataGridSelection } from '../DataGridSelectable'; export type MonthPickerProps = DataGridPickerProps; /** * MonthPicker is a thin wrapper around DataGridPicker specialized for * selecting months. It forwards all DataGridPicker props, applies a * default size of `"xs"`, and automatically sets the initial active * month to the current month when `defaultActive` is not provided. * * Custom month layouts can be composed by passing children, allowing * full control over how months are rendered within the grid. */ export declare const MonthPicker: ({ children, defaultActive, size, ...props }: PropsWithChildren>) => import("react/jsx-runtime").JSX.Element;