export interface UseRemoveAccountReturn { removeAccount: ({ userId }: { userId: string; }) => Promise; isRemoving: boolean; error: string | null; } export default function useRemoveAccount(): UseRemoveAccountReturn;