import { AdaptableFrameworkComponent } from '../../types';
import { CustomRenderFunction } from '../../agGrid/AdaptableFrameworkComponent';
/**
 * Config when displaying a Progress Indicator
 */
export interface ProgressIndicatorConfig {
    /**
     * Text to display
     */
    text?: string;
    /**
     * Render function
     */
    render?: CustomRenderFunction;
    /**
     * A React or Angular Framework component to use
     */
    frameworkComponent?: AdaptableFrameworkComponent;
    /**
     * Length of Delay
     */
    delay?: number;
}
