import { ComponentProps } from 'react'; import { ActivityIndicator as NativeActivityIndicator } from 'react-native'; import { DripsyFinalTheme } from '../declarations'; import { SxProp } from '../css/types'; declare type Props = Omit, 'color'> & { color?: (string & {}) | keyof DripsyFinalTheme['colors']; }; declare function Indicator(props: Props & { sx?: SxProp; }): JSX.Element; export declare const ActivityIndicator: typeof Indicator; export {};