import type { ComponentPropsWithoutRef, RefAttributes } from 'react'; export declare enum IconStyle { BROKEN = "Broken", LINE_DUOTONE = "LineDuotone", LINEAR = "Linear", OUTLINE = "Outline", BOLD = "Bold", BOLD_DUOTONE = "BoldDuotone" } export interface IconBaseProps { alt?: string; color?: string; size?: string | number; mirrored?: boolean; } export interface IconProps extends ComponentPropsWithoutRef<'svg'>, RefAttributes, Omit { color?: string; } export type Icon = React.ForwardRefExoticComponent & React.RefAttributes>;