import { iconMapping } from './Icon/icons'; export interface StatusIconProps extends React.HTMLAttributes { /** * Name of the icon to display */ name: keyof typeof iconMapping; /** * Background color, `none` for no background */ background?: "green" | "orange" | "red" | "gray" | "lightGray" | "teal" | "white" | "black" | "none"; /** * padding around the icon can bne: 'none' | 'small' | 'large' */ gap?: "none" | "small" | "medium" | "large" | "x-large"; /** * Optional alignment of the component */ align?: "center"; } export declare const StatusIcon: React.FC;