import { ts } from "ts-morph";
declare function categorizeNodes(nodes: ts.Node[]): {
    imports: {
        [key: string]: string;
    };
    identifiers: {
        [key: string]: ts.Node;
    };
};
export default categorizeNodes;
