import type { DesignSystemComponents } from "../design-system/types.js"; export type DesignSystemConformanceCategory = "contract" | "leaf" | "behavior" | "overlay-interoperability"; export interface DesignSystemConformanceCheckResult { id: string; category: DesignSystemConformanceCategory; components: readonly (keyof DesignSystemComponents)[]; passed: boolean; message?: string; } export interface DesignSystemConformanceReport { contractVersion: number; adapterName: string; passed: boolean; results: readonly DesignSystemConformanceCheckResult[]; } export interface RunDesignSystemConformanceOptions { adapterName?: string; components: DesignSystemComponents; contractVersion: number; document?: Document; } export declare class DesignSystemConformanceError extends Error { readonly report: DesignSystemConformanceReport; constructor(report: DesignSystemConformanceReport); } //# sourceMappingURL=types.d.ts.map