import { FC } from 'react'; interface IActivityIndicator { isFetching: boolean; color?: string; backgroundColor?: string; size?: 'small' | 'large'; isTransparent?: boolean; } /** * Important for this component is a container with "position: relative" */ declare const ActivityIndicator: FC; export { ActivityIndicator as default };