import { Plugin } from '@envelop/core';
export default function usePollingLive({ config: { defaultInterval, defaultPauseOnBackground }, }?: {
    config?: {
        defaultInterval?: number | undefined;
        defaultPauseOnBackground?: boolean | undefined;
    } | undefined;
}): Plugin<{}>;
