import React from 'react'; export type IconLabelPairProps = { label: string; className?: string; appendClassName?: string; labelColor?: string; labelElement?: string | React.FunctionComponent; }; export type ImageProps = { icon?: never; iconColor?: never; iconSize?: never; image: string; imageSize?: string; alt?: string; }; export type IconProps = { icon: string | React.ReactNode; iconColor?: string; iconSize?: "big" | "small" | "large" | "mini" | "tiny" | "huge" | "massive"; image?: never; imageSize?: never; alt?: never; }; export declare const IconLabelPair: ({ image, alt, icon, iconSize, iconColor, imageSize, label, className, appendClassName, labelElement }: IconLabelPairProps & (ImageProps | IconProps)) => import('./react/jsx-runtime.js').JSX.Element; export default IconLabelPair;