/** * Performs a topological sort on a dependency graph * @param dependencies - Record where keys are entity names and values are arrays of their dependencies * @returns Array of entity names in topological order (dependencies appear before dependents) * @throws {BuildError} If a cycle is detected in the dependency graph */ export declare function topologicalSort(dependencies: Record): string[]; //# sourceMappingURL=sort.d.ts.map