import type { ComponentProps } from "react"; import { CalendarYearPickerCell, CalendarYearPickerGrid, CalendarYearPickerGridBody, CalendarYearPickerTrigger, CalendarYearPickerTriggerHeading, CalendarYearPickerTriggerIndicator } from "./calendar-year-picker"; export declare const CalendarYearPicker: { Trigger: { ({ children, className, onKeyDown, onPress, ...props }: import("./calendar-year-picker").CalendarYearPickerTriggerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; TriggerHeading: { ({ children, className, ...props }: import("./calendar-year-picker").CalendarYearPickerTriggerHeadingProps & Omit>): import("react/jsx-runtime").JSX.Element; displayName: string; }; TriggerIndicator: { ({ children, className, ...props }: import("./calendar-year-picker").CalendarYearPickerTriggerIndicatorProps & Omit>): import("react/jsx-runtime").JSX.Element; displayName: string; }; Grid: { ({ children, className, onKeyDown, ...props }: import("./calendar-year-picker").CalendarYearPickerGridProps & Omit>): import("react/jsx-runtime").JSX.Element; displayName: string; }; GridBody: { ({ children }: import("./calendar-year-picker").CalendarYearPickerGridBodyProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; Cell: { ({ children, className, excludeFromTabOrder, onFocus, onPress, year, ...props }: import("./calendar-year-picker").CalendarYearPickerCellProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export type CalendarYearPicker = { TriggerProps: ComponentProps; TriggerHeadingProps: ComponentProps; TriggerIndicatorProps: ComponentProps; GridProps: ComponentProps; GridBodyProps: ComponentProps; CellProps: ComponentProps; }; export { CalendarYearPickerTrigger, CalendarYearPickerTriggerHeading, CalendarYearPickerTriggerIndicator, CalendarYearPickerGrid, CalendarYearPickerGridBody, CalendarYearPickerCell, }; export type { CalendarYearPickerTriggerProps, CalendarYearPickerTriggerHeadingProps, CalendarYearPickerTriggerIndicatorProps, CalendarYearPickerTriggerRenderProps, CalendarYearPickerGridProps, CalendarYearPickerGridBodyProps, CalendarYearPickerCellProps, CalendarYearPickerCellRenderProps, } from "./calendar-year-picker"; export { YearPickerContext, useYearPicker } from "./year-picker-context"; export { YearPickerStateContext, useYearPickerState } from "./year-picker-context"; export type { YearPickerContextValue, YearPickerStateContextValue } from "./year-picker-context"; export { calendarYearPickerVariants } from "@heroui/styles"; export type { CalendarYearPickerVariants } from "@heroui/styles";