import * as React from 'react'; import { IMDIndicatorProps, IMDIndicatorState } from './indicator-interface'; export default class MDIndicator extends React.PureComponent { static defaultProps: { styles: any; type: string; column: boolean; easing: import("react-native").EasingFunction; color: string; size: number; duration: number; animating: boolean; interaction: boolean; count: number; }; constructor(props: IMDIndicatorProps); private mounted; componentDidMount(): void; componentWillUnmount(): void; componentWillReceiveProps(nextProps: IMDIndicatorProps): void; render(): JSX.Element; private startAnimation; private stopAnimation; private renderComponent; }