import type { Account, AuthSecretStorage, JazzContextType } from "jazz-tools"; import type { jazzPlugin } from "./server.js"; /** * @example * ```ts * const auth = betterAuth({ * plugins: [jazzPluginClient()], * }); * ``` */ export declare const jazzPluginClient: () => { id: "jazz-plugin"; $InferServerPlugin: ReturnType; getActions: ($fetch: import("@better-fetch/fetch").BetterFetch, $store: import("better-auth").ClientStore) => { jazz: { setJazzContext: (context: JazzContextType) => void; setAuthSecretStorage: (storage: AuthSecretStorage) => void; }; }; fetchPlugins: { id: string; name: string; hooks: { onRequest>(context: import("@better-fetch/fetch").RequestContext): Promise; onSuccess(context: import("@better-fetch/fetch").SuccessContext): Promise; }; }[]; }; //# sourceMappingURL=client.d.ts.map