import { type ReactNode } from 'react'; type StaticCalendarButtonTooltipProps = { title: ReactNode; /** * @default true */ disableInteractive?: boolean; isActive: boolean; children: JSX.Element; withoutContainer?: boolean; }; export declare const StaticCalendarButtonTooltip: ({ children, title, isActive, disableInteractive, withoutContainer, }: StaticCalendarButtonTooltipProps) => JSX.Element; export {};