import { PropsWithChildrenAndClassName } from '../../types'; export interface IconProps extends PropsWithChildrenAndClassName { type: 'warning' | 'note' | 'important' | 'tip' | 'chevron' | 'replay' | 'hotspot'; size?: 16 | 24 | 32 | 40; className?: string; label?: string; } export declare const Icon: ({ type, label, size, className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;