import { ApplicationName, FeatureSagasConfig, Polling } from './types'; /** * Include this saga to be able to fetch feature flags for different applications. * By providing the polling object in the config, this saga will take care of polling every * certain amount of time the feature flags for the defined applications. * @param config Configuration for the saga */ export declare function featuresSaga(config: FeatureSagasConfig): Generator, void, unknown>; export declare const getFetchApplicationFeaturesIntervalGenerator: (polling: Polling) => () => Generator | import("redux-saga/effects").PutEffect> | import("redux-saga/effects").CallEffect, never, unknown>;