import { type HTMLAttributes } from 'react'; type IconControlProps = { tooltip: string; } & HTMLAttributes; export declare const IconControl: ({ tooltip, children, className, ...rest }: IconControlProps) => import("react/jsx-runtime").JSX.Element; export {};