import type { VariantsModule } from '../kitbook-types'; /** * This function must be run using a root level await call before you define your Playwright tests as if you run Playwright tests from within an async function the runner will error. * * @param options * @param options.projectRoot The root directory of your SvelteKit project. Defaults to `process.cwd()`. * @param options.srcDirectory The directory where your SvelteKit source files are located. Defaults to `src`. * @param options.skipFiles An array of filepaths to skip when importing variants. The filepaths should be relative to the srcDirectory and without extensions. A basic homepage would be written as `/routes/+page`, a button in your lib would be `/lib/Button`. */ export declare function getVariants(options?: { projectRoot?: string; srcDirectory?: string; skipFiles?: string[]; }): Promise<[string, VariantsModule][]>;