import React, { FC } from 'react'; /** * StatusLight properties */ export interface StatusLightPropsStrict { /** Adds one or more classnames for an element */ className?: string; /** Disabled StatusLight, unclickable */ disabled?: boolean; /** Shortcut for full width StatusLight */ full?: boolean; /** Shortcut for reverse order */ reverse?: boolean; /** Shortcut for justify-content:spacebetween */ split?: boolean; /** Shortcut for pulsing ripple */ pulsing?: boolean; /** Making hyperlink out of StatusLight */ href?: string; /** Action for when StatusLight is clicked */ onClick?: (e: React.SyntheticEvent) => void; /** Action for when StatusLight is hovered */ onMouseOver?: (e: React.SyntheticEvent) => void; /** Indicator color */ color?: 'default' | 'info' | 'success' | 'warning' | 'critical' | string; } export interface StatusLightProps extends StatusLightPropsStrict { [propName: string]: any; } export declare const StatusLight: FC;