/// import { ActivityIndicatorProps as RNActivityIndicatorProps } from 'react-native'; import { Size } from 'bumbag/types'; import { BoxProps } from '../Box'; export declare type LocalSpinnerProps = { size?: Size; }; export declare type SpinnerProps = BoxProps & Omit & LocalSpinnerProps; export declare const Spinner: import("react").ForwardRefExoticComponent & import("react-native").ViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & Omit & LocalSpinnerProps & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };