import { ZepClient as BaseClient } from "../Client"; import { Memory } from "./memory"; import * as core from "../core"; interface ZepOptions { /** * The base URL for the API. Must be a valid url, such as "http://localhost:8000". */ baseUrl: string; /** * The API secret defined in the Zep Config */ apiKey: string; fetcher?: core.FetchFunction; } export declare class ZepClient extends BaseClient { protected readonly _zepOptions: ZepOptions; _options: BaseClient.Options; constructor(_zepOptions: ZepOptions); get memory(): Memory; } export {};