import type { ClientFeaturesResponse } from "unleash-client"; type FetchOptions = RequestInit & { next?: { revalidate?: number | false; tags?: string[]; }; }; export declare const getDefaultConfig: (defaultAppName?: string) => { fetchOptions: FetchOptions; instanceId?: string | undefined; token?: string | undefined; appName: string; url: string; }; /** * Fetch Server-side feature flags definitions from Unleash API * * If you provide `url` in the config parameter, it should be a full endpoint path: * @example getDefinitions({ url: `http://localhost:4242/api/client/features` }) */ export declare const getDefinitions: (config?: Partial>) => Promise; export {}; //# sourceMappingURL=getDefinitions.d.ts.map