import type { RefObject } from 'react';
type UseCalendarKeyboardProps = {
    controlRef: RefObject<HTMLElement>;
    calendarRef: RefObject<HTMLElement>;
    active?: boolean;
};
export declare const useCalendarKeyboard: ({ controlRef, calendarRef, active, }: UseCalendarKeyboardProps) => boolean;
export {};
