/** @see https://gist.github.com/RubyTuesdayDONO/5006455 */
export declare function topologicalSort(graph: Record<string, Set<string>>): string[];
