import { IProviderConfiguration } from "../../../types";
/**
 * A provider configuration for the dashboard event proxy
 */
export declare const EVENT_PROXY: IProviderConfiguration;
/**
 * Retrieves a provider configuration for the interval refresher
 *
 * @param enabled Specify whether the adapter should be active by default
 * @param interval Specify the interval (in seconds) at which the refresher should invoke the data source adapter
 *
 * @returns A provider configuration for the refresher
 */
export declare function refresher(enabled?: boolean, interval?: number): IProviderConfiguration;
