import * as LIFE_SERVER_BUILD_PATH from 'LIFE_SERVER_BUILD_PATH'; import { z } from 'zod'; import { a as agentServerConfig } from '../../config-n67P8tNt.mjs'; import { A as AgentDefinition, O as OperationResult } from '../../types-DcmGusfD.mjs'; import 'zod/v4/core'; import 'type-fest'; type Mode = "LIFE_BUILD_MODE"; type ActualServerBuild = typeof LIFE_SERVER_BUILD_PATH; declare const defaultBuild: { readonly "Run `life dev` to see your agents here.": { readonly definition: AgentDefinition; readonly globalConfigs: z.input[]; readonly sha: ""; }; }; type ServerBuild = Mode extends "production" ? Awaited["default"] extends never ? Awaited : Awaited["default"] : typeof defaultBuild; declare function importServerBuild(options: { projectDirectory: string; noCache: boolean; }): Promise>; export { type ServerBuild, importServerBuild };