import { Mutant } from '@stryker-mutator/api/core'; export declare class TSFileNode { fileName: string; parents: TSFileNode[]; children: TSFileNode[]; constructor(fileName: string, parents: TSFileNode[], children: TSFileNode[]); getAllParentReferencesIncludingSelf(allParentReferences?: Set): Set; getAllChildReferencesIncludingSelf(allChildReferences?: Set): Set; getMutantsWithReferenceToChildrenOrSelf(mutants: Mutant[], nodesChecked?: string[]): Mutant[]; } //# sourceMappingURL=ts-file-node.d.ts.map