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