export { adminEntityDef } from "./admin"; export { anonymousEntityDef } from "./anonymous"; export { apiKeyEntityDef } from "./api-key"; export { auditLogEntityDef } from "./audit-log"; export { jwtEntityDef } from "./jwt"; export { organizationEntityDef } from "./organization"; export { passkeyEntityDef } from "./passkey"; export { phoneNumberEntityDef } from "./phone-number"; export { ssoEntityDef } from "./sso"; export { twoFactorEntityDef } from "./two-factor"; export type { BetterAuthEntityDef, BetterAuthPluginId } from "./types"; export { usernameEntityDef } from "./username"; import { type BetterAuthEntityDef, type BetterAuthPluginId } from "./types"; /** * 엔티티 정의 레지스트리 * 플러그인 ID로 엔티티 정의에 접근할 수 있습니다. */ export declare const ENTITY_DEFINITIONS: Record; /** * 지원하는 플러그인 ID 목록 */ export declare const SUPPORTED_PLUGIN_IDS: BetterAuthPluginId[]; /** * 플러그인 ID가 유효한지 확인합니다. */ export declare function isValidPluginId(id: string): id is BetterAuthPluginId; //# sourceMappingURL=index.d.ts.map