import React from "react"; export type DatePickerButtonProps = { hasError: boolean; disabled: boolean; readOnly?: boolean; /** Whether the associated calendar popover is currently open. */ isOpen: boolean; ariaLabel: string; /** Id of the calendar region (used for aria-controls). */ calendarId: string; onClick?: (e: React.MouseEvent) => void; }; export declare const DatePickerButton: React.ForwardRefExoticComponent>;