/** * Get the build for the function * @param functionId * @returns */ declare function getBuild(functionId: string): Promise; /** * Mark all builds as old */ declare function markAllBuildAsOld(): void; export declare const NodeEsBuild: { getBuild: typeof getBuild; markAllBuildAsOld: typeof markAllBuildAsOld; }; export {};