/** * Genera los imports a partir de las funciones exportadas. * * Por ejemplo, para el módulo `./foo`, y para el código: * * ```js * export function foo() { * return 'foo'; * } * ``` * * Genera: * * ```js * import { foo } from './foo' * ``` */ export declare function generateImportFunctions({ code, modulePath, }: { code: string; modulePath: string; }): any; //# sourceMappingURL=generateImportFunctions.d.ts.map