import type { ReactNode } from 'react';
type TagWithIconProps = {
    icon: ReactNode;
    children: ReactNode;
    info?: ReactNode;
    capitalize?: boolean;
    className?: string;
    onClick?: () => void;
};
export declare const TagWithIcon: ({ icon, info, children, capitalize, className, onClick, }: TagWithIconProps) => import("react/jsx-runtime").JSX.Element;
export {};
