import type { WithNormalizedProps } from "../../global";
static interface ProgressSpinnerInput extends Omit<Marko.HTML.Span, `on${string}`> {
    size?: "large" | "small";
    "a11y-text"?: Marko.HTMLAttributes["aria-label"];
}
export interface Input extends WithNormalizedProps<ProgressSpinnerInput> {
}
