import { type WorkspaceMetadata } from "../base/types.js"; /** * Exports project metadata into javascript file containing sdk-model entity definitions (attribute, measure, etc) * * This is done by generating typescript code & then running it through babel plugin which strips away the * type annotations. * * @param projectMetadata - project metadata to export into javascript * @param outputFile - output typescript file - WILL be overwritten */ export declare function exportMetadataToJavascript(projectMetadata: WorkspaceMetadata, outputFile: string): Promise; //# sourceMappingURL=metaToJavascript.d.ts.map