import { FC, PropsWithChildren } from "react";
import { type ColorName } from "../../Foundations";
import { type IconName } from "../BlokIcon/BlokIcon";
export interface BlokLabeledIconProps {
    iconName?: IconName;
    colorTarget?: "background" | "foreground";
    fontSize?: string;
    colorScheme?: ColorName;
    className?: string;
    isRound?: boolean;
}
export declare const BlokLabeledIcon: FC<PropsWithChildren<BlokLabeledIconProps>>;
