import type { ActivityIndicatorProps } from 'react-native'; import type { StyledProps } from '../../../theme/types'; import type { CustomProps, ThemeComponentSizeType } from '../../../components/types'; export interface InterfaceSpinnerProps extends Omit, Omit { /** * Size of Spinner */ size?: ThemeComponentSizeType<'Spinner'>; } export declare type ISpinnerProps = InterfaceSpinnerProps & CustomProps<'Spinner'>;