import type { PreparedAgentsServerRuntime } from './PreparedAgentsServerRuntime';
/**
 * Resolves the runtime app and dependency paths shared by Agents Server start and dev commands.
 *
 * @private internal utility of `buildAgentsServer`
 */
export declare function prepareAgentsServerRuntime(options?: {
    readonly appPath?: string;
}): Promise<PreparedAgentsServerRuntime>;
