import type { LettaCodeSession, SDKInitMessage, SDKResultMessage, SendMessage } from "../types.js"; export type AdvancedSession = LettaCodeSession & { initialize(): Promise; sendAndWaitForResult(message: SendMessage): Promise; updateToolset(toolsetPreference: string): Promise; }; export declare function asAdvanced(session: LettaCodeSession): AdvancedSession; //# sourceMappingURL=advanced-session.d.ts.map