/** * AIT error classes. */ /** Base error for AIT operations */ export declare class AITError extends Error { constructor(message: string); } /** Invalid AIT file format */ export declare class AITFormatError extends AITError { constructor(message: string); } /** Unsupported AIT format version */ export declare class AITVersionError extends AITError { constructor(message: string); } //# sourceMappingURL=errors.d.ts.map