export function a() { return "a1"; }
export { b } from "./b";
export * from "./c";
export { d } from "./b";
export var e = "e1";