import React from "react"; import type { StatusIndicatorType } from "./StatusIndicator.type"; interface StatusIndicatorProps { readonly status: StatusIndicatorType; } export declare function StatusIndicator({ status }: StatusIndicatorProps): React.JSX.Element; export {};