import { exportStatement } from "../../types"; /** * @description * Returns the export statements that correspond to the given name and given absolute path. * The reason that it returns an array is because a given name can correspond to a concretion * and a type export. * @todo * change the name according to the is assertion */ export declare function getExportStatementsOfNameOf(absolutePathToTsFile: string, nameToSearchFor: string): { exportStatement: exportStatement; resolutionIndex: number; }[];