import { type TooltipProps } from "@salt-ds/core"; import type { IconProps } from "@salt-ds/icons"; import type { ElementType } from "react"; export type StatusIndicatorStatus = "error" | "info" | "warning" | "success"; export interface StatusIndicatorProps extends IconProps { hasTooltip?: boolean; IconProps?: Partial; status?: StatusIndicatorStatus; TooltipComponent?: ElementType; TooltipProps?: Partial; tooltipText?: string; } export declare const StatusIndicator: (props: StatusIndicatorProps) => import("react/jsx-runtime").JSX.Element;