import { BaseMessageHistory } from '../../lib/types.js';
import 'ai';
import '@upstash/vector';

type GetHistoryClientParams = {
    redis?: {
        url: string;
        token: string;
    };
};
declare const getHistoryClient: (params?: GetHistoryClientParams) => BaseMessageHistory;

export { type GetHistoryClientParams, getHistoryClient };
