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): import("react/jsx-runtime").JSX.Element;
        displayName: string;
    };
    TriggerIndicator: {
        ({ children, className, ...props }: import("./calendar-year-picker").CalendarYearPickerTriggerIndicatorProps): import("react/jsx-runtime").JSX.Element;
        displayName: string;
    };
    Grid: {
        ({ children, className, onKeyDown, ...props }: import("./calendar-year-picker").CalendarYearPickerGridProps): 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<typeof CalendarYearPickerTrigger>;
    TriggerHeadingProps: ComponentProps<typeof CalendarYearPickerTriggerHeading>;
    TriggerIndicatorProps: ComponentProps<typeof CalendarYearPickerTriggerIndicator>;
    GridProps: ComponentProps<typeof CalendarYearPickerGrid>;
    GridBodyProps: ComponentProps<typeof CalendarYearPickerGridBody>;
    CellProps: ComponentProps<typeof CalendarYearPickerCell>;
};
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";
