import { DebugMessageProps } from '../DebugMessage'; export interface ActionMessageProps extends DebugMessageProps { /** * If provided, this will render an action button within the tooltip. */ label?: string | undefined; /** * A callback handler for the action button. */ onClick?: React.MouseEventHandler | undefined; } /** * Renders a tooltip, optionally with an action button attached to it. * * @see {@link https://voiceflow.github.io/react-chat/?path=/story/components-tooltip--left-orientation} */ export declare const Tooltip: React.FC; //# sourceMappingURL=index.d.ts.map