import React from "react"; /** * @deprecated Use `ActivityIndicator` instead. */ 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; } /** * @deprecated Use `ActivityIndicator` instead. */ export declare function Spinner({ size, inline }: SpinnerProps): React.JSX.Element; export {};