/** @format */
import { type FC, type PropsWithChildren } from 'react';
import { type IConfig, UnleashClient } from 'unleash-proxy-client';
export interface IFlagProvider {
    config?: IConfig;
    unleashClient?: UnleashClient;
    startClient?: boolean;
    stopClient?: boolean;
    startTransition?: (fn: () => void) => void;
}
declare const FlagProvider: FC<PropsWithChildren<IFlagProvider>>;
export default FlagProvider;
