import { type ReactNode } from "react"; import type { DesignSystemComponents } from "../design-system/types.js"; import type { DesignSystemConformanceCategory, DesignSystemConformanceReport, RunDesignSystemConformanceOptions } from "./types.js"; export declare const DESIGN_SYSTEM_CONFORMANCE_CHECKS: { id: string; category: DesignSystemConformanceCategory; components: readonly (keyof DesignSystemComponents)[]; }[]; export declare function runDesignSystemConformance({ adapterName, components, contractVersion, document: suppliedDocument, }: RunDesignSystemConformanceOptions): Promise; export declare function assertDesignSystemConformance(options: RunDesignSystemConformanceOptions): Promise; export declare function renderDesignSystemConformanceFixture(components: DesignSystemComponents): ReactNode; //# sourceMappingURL=runner.d.ts.map