export interface UseSwitchAccountReturn { switchAccount: ({ userId }: { userId: string; }) => Promise; isSwitching: boolean; error: string | null; } export default function useSwitchAccount(): UseSwitchAccountReturn;