import { WidgetSupportOptions } from '../index';
export interface LoadingSupportOptions extends WidgetSupportOptions {
    /**
     * If not set: 250 ms
     */
    loadingIndicatorDelay?: number;
    /**
     * Specifies whether the loading support should draw a glass pane to prevent clicks and other interaction.
     * The loading indicator will be put onto that glass pane.
     *
     * Default is false.
     */
    withGlassPane?: boolean;
}
//# sourceMappingURL=LoadingSupportOptions.d.ts.map