import type { CanvasScreen } from "./types.js"; export type ValidationWarning = { type: "canvas-clip" | "text-device-overlap" | "text-contrast" | "poor-spacing" | "device-clip"; severity: "error" | "warning" | "info"; layerId: string; layerType: string; relatedLayerId?: string; message: string; suggestion?: string; }; export type StripContext = { connectedLeft: boolean; connectedRight: boolean; }; export declare function validateScreen(screen: CanvasScreen, strip?: StripContext): ValidationWarning[]; //# sourceMappingURL=validation.d.ts.map