/** * IconButton — ported 1:1 from Veryfront Studio: an icon-only Button with a * built-in accessible Tooltip. Private to the chat module. * * @module react/components/ui/icon-button */ import * as React from "react"; import { type ButtonProps } from "./button.js"; /** Props accepted by ``. */ export interface IconButtonProps extends ButtonProps { /** Hover label. */ tooltip: string; /** Tooltip side. @default "bottom" */ tooltipSide?: "top" | "bottom" | "left" | "right"; } /** Render an icon-only button with a hover tooltip. */ export declare function IconButton({ tooltip, tooltipSide, disabled, size, ...props }: IconButtonProps): React.ReactElement; //# sourceMappingURL=icon-button.d.ts.map