import { ProviderData } from 'flags';

declare function getProviderData(options: {
    /** GrowthBook API Key or Personal Access Token **/
    apiKey: string;
    /** Override the application API host for self-hosted users **/
    appApiHost?: string;
    /** Override the application URL for self-hosted users **/
    appOrigin?: string;
    /** Provide your GrowthBook SDK key to filter flag definitions **/
    clientKey?: string;
}): Promise<ProviderData>;

export { getProviderData };
