import { TestUtilsDoc } from './interfaces'; export interface TestUtilsVariantOptions { root: string; extraExports?: Array; } export interface TestUtilsDocumenterOptions { tsconfigPath: string; includeCoreMethods?: boolean; domUtils: TestUtilsVariantOptions; selectorsUtils: TestUtilsVariantOptions; } interface TestUtilsDefinitions { domDefinitions: Array; selectorsDefinitions: Array; } export declare function documentTestUtils(options: TestUtilsDocumenterOptions): TestUtilsDefinitions; export declare function writeTestUtilsDocumentation({ outDir, ...rest }: TestUtilsDocumenterOptions & { outDir: string; }): void; export {};