import * as React from 'react'; export declare type MDRefreshControlType = 'default' | 'roller'; export interface IMDRefreshControlProps { type?: MDRefreshControlType; refreshing?: boolean; stateHidden?: boolean; timeHidden?: boolean; stateFontSize?: number; timeFontSize?: number; stateTextColor?: string; timeTextColor?: string; indicatorColor?: string; refreshText?: string; refreshActiveText?: string; refreshingText?: string; onRefresh?: () => void; } export default class MDRefreshControl extends React.Component { static defaultProps: { type: string; refreshing: boolean; stateHidden: boolean; timeHidden: boolean; stateTextColor: string; timeTextColor: string; indicatorColor: string; refreshText: string; refreshActiveText: string; refreshingText: string; }; refreshControl: any; render(): JSX.Element | null; }