import type { WaferMap } from '..'; import type { WaferMapValidity } from '../types'; /** * Helper class for the nimble-wafer-map to validate that the wafer maps's grid dimensions * configuration is valid and report which aspects of the configuration are valid or invalid. */ export declare class WaferMapValidator { private readonly wafermap; private invalidGridDimensions; private invalidDiesTableSchema; constructor(wafermap: WaferMap); getValidity(): WaferMapValidity; isValid(): boolean; validateGridDimensions(): boolean; validateDiesTableSchema(): boolean; }