import { t as i18n } from "./index-zdHXPTvz.mjs"; //#region src/client.d.ts /** * i18n client plugin for Better Auth * * This client plugin provides type inference for the i18n server plugin. * Error messages from the server will already be translated based on * the detected locale. * * @example * ```ts * import { createAuthClient } from "better-auth/client"; * import { i18nClient } from "@better-auth/i18n/client"; * * export const client = createAuthClient({ * plugins: [i18nClient()], * }); * ``` */ declare const i18nClient: () => { id: "i18n"; version: string; $InferServerPlugin: ReturnType; }; //#endregion export { i18nClient };