/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface SpinnerProps extends Omit, "size" | "label"> { size?: "sm" | "md" | "lg"; /** What is loading, read to assistive tech. */ label?: string; } /** * Loading indicator with a screen-reader label. * * @example * */ export declare const Spinner: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=Spinner.d.ts.map