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