import { Page } from '@playwright/test'; export interface TestConfig { theme: 'lightmode' | 'darkmode'; backgroundColor: string; modeVariant?: 'primary' | 'secondary'; brand?: string; } export declare const testConfigurations: { withModeVariants: TestConfig[]; basic: TestConfig[]; withModeVariantsAndBrands: TestConfig[]; basicWithBrandVariants: TestConfig[]; }; export declare const setupPage: (page: Page, config: TestConfig, componentTestPath: string, componentName: string) => Promise; export declare const getTestDescribeText: (config: TestConfig, testDescription: string) => string;