import { ButtonProps } from '../Button'; import { MouseEvent, MouseEventHandler } from 'react'; export type CalendarNowProps = { /** * @deprecated This is overridden internally */ onClick?: (e: MouseEvent, date: string | null) => void; onClickFixed?: MouseEventHandler | undefined; } & 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 CalendarNow: import('react').ForwardRefExoticComponent<{ /** * @deprecated This is overridden internally */ onClick?: (e: MouseEvent, date: string | null) => void; onClickFixed?: MouseEventHandler | undefined; } & Omit & import('react').RefAttributes>;