import { t as SSOPlugin } from "./index-sM6JWXeV.mjs"; import { DBFieldAttribute } from "better-auth/db"; //#region src/client.d.ts interface SSOClientOptions { domainVerification?: { enabled: boolean; } | undefined; schema?: { ssoProvider?: { additionalFields?: { [key: string]: DBFieldAttribute; }; }; } | undefined; } declare const ssoClient: (options?: CO | undefined) => { id: "sso-client"; version: string; $InferServerPlugin: SSOPlugin<{ domainVerification: { enabled: CO["domainVerification"] extends { enabled: true; } ? true : false; }; schema: CO["schema"]; }>; pathMethods: { "/sso/providers": "GET"; "/sso/get-provider": "GET"; }; }; //#endregion export { ssoClient };