import React from "react"; interface SpinnerProps { /** * Specifies the size of the spinner * * @default "base" */ readonly size?: "small" | "base"; /** * Spinner becomes an inline element when true, * otherwise it is a block element */ readonly inline?: boolean; } export declare function Spinner({ size, inline }: SpinnerProps): React.JSX.Element; export {};