export type Graph = {
    [key: string]: string[];
};
export declare function topologicalSort(graph: Graph): string[];
