import { DefaultExport, NamedExports, TypeExports } from './types.js'; /** Build the default export */ declare function buildDefaultExport(defaultExport: DefaultExport): string; /** Build the named exports */ declare function buildNamedExports(namedExports: NamedExports[]): string; /** Build the Type exports */ declare function buildTypeExports(typeExports: TypeExports[]): string; declare function buildModule(moduleName: string, moduleDeclarations: string): string; export { buildDefaultExport, buildModule, buildNamedExports, buildTypeExports };