import { Auth } from 'better-auth';
import { magicLink } from 'better-auth/plugins';
export type MagicLinkAuthServer = Pick<Auth<{
    plugins: [ReturnType<typeof magicLink>];
}>, "api">;
