export interface GrowthBook {
    isOn(this: GrowthBook, featureKey: string, ...rest: unknown[]): boolean;
    getFeatureValue(this: GrowthBook, featureKey: string, defaultValue: unknown, ...rest: unknown[]): unknown;
}
export type GrowthBookClass = new (...args: unknown[]) => GrowthBook;
//# sourceMappingURL=types.d.ts.map
