/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC, type ReactNode } from 'react';
interface IconWrapperProps {
    bgColor?: string;
    children?: ReactNode;
    label?: string;
}
/**
 * __Icon wrapper__
 *
 * An icon wrapper is used internally only.
 */
declare const IconWrapper: FC<IconWrapperProps>;
export default IconWrapper;
