import { CSSProperties, ReactNode } from 'react'; import { Position } from '../tooltip/Tooltip.component'; type IconHelpProps = { tooltipMessage: ReactNode; placement?: Position; overlayStyle?: CSSProperties; /** * Accessible label for the help button. * Should describe what information the tooltip provides. * Example: "More info about Veeam application" */ 'aria-label'?: string; /** @deprecated Use aria-label instead */ title?: string; }; export declare const IconHelp: ({ tooltipMessage, overlayStyle, placement, "aria-label": ariaLabel, title, }: IconHelpProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=IconHelper.d.ts.map