export declare const configuredProviders: ({ id: string; name: string; type: "oauth"; clientId: string; clientSecret: string; authorization: { url: string; params?: Record; }; token: { url: string; }; userinfo: { url: string; }; profile: (profile: any) => { id: string; name?: string; email?: string; image?: string; }; } | { name: string; credentials: Record; authorize: (credentials: Record) => Promise<{ id: string; name?: string; email?: string; } | null>; id: string; type: "credentials"; })[];