import type { Metafile } from 'esbuild';
export type AllMetaFiles = {
    ui?: Metafile;
    functions?: Metafile;
    actions?: Metafile;
    widgets?: Metafile;
};
export declare const BUILD_META_FILE_NAME = "build-meta-file.json";
/** Writes the passed content to <app-root>/build/meta-file */
export declare function writeBuildMetaInformation(appRoot: string, content: AllMetaFiles): Promise<void>;
/** Reads the content of the build-meta-file.json and returns it. If the file is not present it throws an error. */
export declare function readBuildMetaInformation(appRoot: string): Promise<AllMetaFiles>;
