export interface ValidationError { message: string; reference: string; level: 'error' | 'warning'; line?: number; column?: number; metadata?: Record; } export type SchemaValidationError = ValidationError; export interface ManifestObject { typedContent?: T; yamlContent?: any; yamlContentByLine?: string[]; filePath?: string; } export interface ManifestValidationResult { success: boolean; manifestObject?: ManifestObject; errors?: SchemaValidationError[]; } //# sourceMappingURL=errors.d.ts.map