import type { WithNormalizedProps } from "../../global";
static interface SignalInput extends Omit<Marko.HTML.Span, `on${string}`> {
    status?: "trustworthy" | "recent" | "time-sensitive" | "neutral";
}
export interface Input extends WithNormalizedProps<SignalInput> {
}
