import type { CalendarYearPickerVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import React from "react";
import { Button as ButtonPrimitive } from "react-aria-components";
interface CalendarYearPickerTriggerProps extends Omit<ComponentPropsWithRef<typeof ButtonPrimitive>, "children">, CalendarYearPickerVariants {
    children: React.ReactNode | ((values: CalendarYearPickerTriggerRenderProps) => React.ReactNode);
}
interface CalendarYearPickerTriggerRenderProps {
    isOpen: boolean;
    monthYear: string;
    toggle: () => void;
}
interface CalendarYearPickerTriggerHeadingProps extends Omit<ComponentPropsWithRef<"span">, "children">, CalendarYearPickerVariants {
    children?: React.ReactNode | ((values: CalendarYearPickerTriggerRenderProps) => React.ReactNode);
}
interface CalendarYearPickerTriggerIndicatorProps extends Omit<ComponentPropsWithRef<"span">, "children">, CalendarYearPickerVariants {
    children?: React.ReactNode | ((values: CalendarYearPickerTriggerRenderProps) => React.ReactNode);
}
declare const CalendarYearPickerTrigger: {
    ({ children, className, onKeyDown, onPress, ...props }: CalendarYearPickerTriggerProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
declare const CalendarYearPickerTriggerHeading: {
    ({ children, className, ...props }: CalendarYearPickerTriggerHeadingProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
declare const CalendarYearPickerTriggerIndicator: {
    ({ children, className, ...props }: CalendarYearPickerTriggerIndicatorProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
interface CalendarYearPickerGridProps extends ComponentPropsWithRef<"div">, CalendarYearPickerVariants {
}
interface CalendarYearPickerCellRenderProps {
    year: number;
    formattedYear: string;
    isSelected: boolean;
    isCurrentYear: boolean;
    isOpen: boolean;
    selectYear: () => void;
}
interface CalendarYearPickerGridBodyProps {
    children?: (values: CalendarYearPickerCellRenderProps) => React.ReactNode;
}
interface CalendarYearPickerCellProps extends Omit<ComponentPropsWithRef<typeof ButtonPrimitive>, "children">, CalendarYearPickerVariants {
    year: number;
    children?: React.ReactNode | ((values: CalendarYearPickerCellRenderProps) => React.ReactNode);
}
declare const CalendarYearPickerGrid: {
    ({ children, className, onKeyDown, ...props }: CalendarYearPickerGridProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
declare const CalendarYearPickerGridBody: {
    ({ children }: CalendarYearPickerGridBodyProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
declare const CalendarYearPickerCell: {
    ({ children, className, excludeFromTabOrder, onFocus, onPress, year, ...props }: CalendarYearPickerCellProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export { CalendarYearPickerTrigger, CalendarYearPickerTriggerHeading, CalendarYearPickerTriggerIndicator, CalendarYearPickerGrid, CalendarYearPickerGridBody, CalendarYearPickerCell, };
export type { CalendarYearPickerTriggerProps, CalendarYearPickerTriggerHeadingProps, CalendarYearPickerTriggerIndicatorProps, CalendarYearPickerTriggerRenderProps, CalendarYearPickerGridProps, CalendarYearPickerGridBodyProps, CalendarYearPickerCellProps, CalendarYearPickerCellRenderProps, };
