import { Animated, EasingFunction, ViewStyle } from 'react-native'; export interface IMDIndicatorProps { styles?: IMDIndicatorStyle; type?: 'roller' | 'spinner' | 'carousel'; color?: string; size?: number; easing?: EasingFunction; duration?: number; animating?: boolean; interaction?: boolean; count?: number; } export interface IMDIndicatorState { progress: Animated.Value; animation?: Animated.CompositeAnimation; } export interface IMDIndicatorStyle { wrapper?: ViewStyle; container?: ViewStyle; layer?: ViewStyle; spinnerLayer?: ViewStyle; carouseContainer?: ViewStyle; } export declare const MDIndicatorStyles: IMDIndicatorStyle; export declare const styles: any;