import React from 'react';
export default function BusyIndicator({ className, color, active, isBusy, delayMs, style, ...props }: {
    [x: string]: any;
    className: any;
    color: any;
    active: any;
    isBusy: any;
    delayMs: any;
    style: any;
}): React.DetailedReactHTMLElement<{
    className: string;
    style: any;
}, HTMLElement>;
