import { AuthMethodType } from '../shared/types'; /** * 注册方式相关的逻辑hook */ export declare function useRegistrationMethods(isRegistrationMethodEnabled: (type: AuthMethodType) => boolean): { enabledMethods: AuthMethodType[]; shouldShowDivider: boolean; hasEmailAndPhone: boolean; };