import { ICON_SIZES, ICON_STYLE_TYPES } from "../../utils/enums";
export declare class SlIcons {
    /** Icon name to display */
    icon: string;
    /** Size of the icon */
    size: ICON_SIZES | `${ICON_SIZES}`;
    /** Whether the icon is active */
    active: boolean;
    /** Color of the icon */
    color: string;
    /** Color of the icon */
    iconColor: string;
    /** Style of the icon */
    iconStyle: ICON_STYLE_TYPES | `${ICON_STYLE_TYPES}`;
    private getSizeConfig;
    render(): any;
}
