/** * A hook to control the display of the tooltip by delaying the open state. * When the tooltip is going to open, it will delay for 250ms before actually visible. * When the tooltip is going to close, it will delay for 750ms before actually invisible. * * @param tooltipOpen - The current open state of the tooltip. If not defined, the tooltip will be controlled by the trigger. * * @param onActualClose - Callback function called when the tooltip actually closes (after delay completes). * * @returns A tuple containing [open, setOpenDelayed, closeImmediate, openImmediate, cancelClose] functions for controlling tooltip state. */ export declare function useOpenStateDelayed(tooltipOpen?: boolean, onActualClose?: () => void): readonly [boolean, (value: boolean) => void, () => void, () => void, () => void];