export interface FeatureFlag { key: string; state: boolean; } export interface FeatureFlagFixtures { /** * Call before the navigation that triggers `ValidateFeatureFlags`, `UserPermissions`, * and `ActiveSubscription` requests to ensure the responses are captured for `configCat`. */ getValidateFeatureFlags: () => void; /** * Returns the state of a ConfigCat feature flag from the captured `ValidateFeatureFlags` response. * Waits for the response if not yet captured. * * @param flag - The feature flag key to look up */ configCat: (flag: string) => Promise; } export declare const test: import("@playwright/test").TestType;