/** * Source Validator * * Validates meta.source field (URI format). * Refactored to use createValidationIssue factory for consistent issue creation. */ import type { ValidationIssue } from '../../types'; /** * Validates meta.source field (URI format) */ export declare class SourceValidator { /** * Validate source URI format */ validate(source: string, resourceType: string): ValidationIssue[]; } //# sourceMappingURL=source-validator.d.ts.map