/**
 * Cache management command
 */
interface CacheOptions {
    type?: 'ram' | 'sqlite' | 'all';
}
interface CacheRecallOptions {
    session: string;
}
/**
 * Clear local cache
 */
export declare function cacheCommand(options: CacheOptions): Promise<void>;
/**
 * Recall patterns from a pinned session
 */
export declare function cacheRecallCommand(options: CacheRecallOptions): Promise<void>;
export {};
//# sourceMappingURL=cache.d.ts.map