/** * Session utility functions for milady plugin. * * These are simplified versions for use until @elizaos/core exports them. */ import type { Provider } from "@elizaos/core"; /** * Resolve the default session store path. */ export declare function resolveDefaultSessionStorePath(agentId?: string): string; /** * Get session providers. * * Returns an empty array for now - session providers will be added * when @elizaos/core exports them. */ export declare function getSessionProviders(_options?: { storePath?: string; }): Provider[]; //# sourceMappingURL=session-utils.d.ts.map