import { type BetterAuthPlugin } from "better-auth"; type JazzPlugin = BetterAuthPlugin & { schema: { user: { fields: { accountID: { type: "string"; required: false; input: false; }; encryptedCredentials: { type: "string"; required: false; input: false; returned: false; }; }; }; }; }; /** * @returns The BetterAuth server plugin. * * @example * ```ts * const auth = betterAuth({ * plugins: [jazzPlugin()], * // ... other BetterAuth options * }); * ``` */ export declare const jazzPlugin: () => JazzPlugin; export {}; //# sourceMappingURL=server.d.ts.map