type DescribeCallback = () => void; type DescribeFn = (title: string, callback: DescribeCallback) => void; /** * Wrapped `describe` that appends `[codeowner]` to the suite title when the * `codeowner` environment variable is set. Drop-in replacement for `test.describe`. */ export declare const describe: DescribeFn & { only: DescribeFn; skip: DescribeFn; }; export {};