import type { AstFile } from '../parser/ast.js'; import type { BindResult } from '../binder/binder.js'; import { DiagnosticBag } from '../diagnostics/diagnostic.js'; export interface ValidateResult { readonly bag: DiagnosticBag; } export declare function validate(files: readonly AstFile[], bindResult: BindResult): ValidateResult; //# sourceMappingURL=validator.d.ts.map