export interface UseOAuthProps { onSuccess?: (success: boolean) => void; onError?: (error: string) => void; } export interface UseAppleLoginProps extends UseOAuthProps { isLoading: boolean; setIsLoading: (v: boolean) => void; redirectUri?: string; }