import { FsPath } from '../file-info/fs-path'; import { ProjectInfo } from '../main/init'; export type DependencyRuleViolation = { rawImport: string; fromModulePath: FsPath; toModulePath: FsPath; fromTag: string; toTags: string[]; }; export declare function checkForDependencyRuleViolation(fsPath: FsPath, { config, getFileInfo, rootDir }: ProjectInfo): DependencyRuleViolation[];