import { FC, PropsWithChildren } from 'react';
interface IInteractiveWidgetIconProps extends PropsWithChildren {
    appearance?: 'default' | 'compact';
    iconColor?: string;
    iconBackground?: boolean;
}
declare const InteractiveWidgetIcon: FC<IInteractiveWidgetIconProps>;
export default InteractiveWidgetIcon;
