import { Thread } from "./types";
export declare const threadCache: {
    get: (threadId: string, ttl?: number) => Promise<Thread>;
};
