import { Tooltip as Component } from './Tooltip'; export declare const Tooltip: { readonly name: "Tooltip"; readonly purpose: "State container for a control and a short text label; includes standalone provider wiring."; readonly example: "\n Report status\n Published yesterday\n"; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "defaultOpen"; readonly type: "boolean"; readonly default: false; readonly description: "Whether the tooltip starts open."; }, { readonly name: "delayDuration"; readonly type: "number"; readonly default: 0; readonly min: 0; readonly description: "Milliseconds to wait before opening this tooltip."; }, { readonly name: "disableHoverableContent"; readonly type: "boolean"; readonly default: false; readonly description: "Close when the pointer leaves the trigger instead of allowing hover over content."; }]; readonly Component: typeof Component; };