import { ButtonProps } from '../../Button'; import { MouseEvent } from 'react'; export type CalendarNowButtonProps = { /** * @deprecated This is overridden internally */ onClick?: (e: MouseEvent, date: string | null) => void; } & Omit; /** * A button that displays the current date and allows the user to select it. * * @param props - The rest of the props for the Button component. * @returns A button that displays the current date and allows the user to select it. */ export declare const CalendarNowButton: import('react').ForwardRefExoticComponent<{ /** * @deprecated This is overridden internally */ onClick?: (e: MouseEvent, date: string | null) => void; } & Omit & import('react').RefAttributes>;