import type { FC, ReactNode } from "react";
type StatusIndicatorProps = {
status: "fine" | "caution" | "danger";
children: ReactNode;
};
/**
* Component to display a status indicator along with a message.
*
* @example
*
*
* Nothing to worry about.
*
*/
export declare const StatusIndicator: FC;
export {};