import ts from "typescript"; export type SchemaPolicyIssueKind = "loose" | "allow" | "redundant-strip"; export interface SchemaPolicyIssue { kind: SchemaPolicyIssueKind; severity: "error" | "warning"; line: number; column: number; } export declare function inspectAnyValiSchemaNode(sourceFile: ts.SourceFile, root: ts.Node): SchemaPolicyIssue[]; export declare function inspectAnyValiSchemaSource(source: string, fileName: string): SchemaPolicyIssue[]; //# sourceMappingURL=schemaPolicy.d.ts.map