Return the Lens handle of a profile in the format: lens/@<name-of-user>
<name-of-user>
import { getHandleFromProfileId } from "thirdweb/extensions/lens"; const profileId = 461662n;const handle = await getHandleFromProfileId({ profileId, client }); // "lens/@captain_jack"
function getHandleFromProfileId( options: GetHandleFromProfileIdParams,): Promise<null | string>;
let options: GetHandleFromProfileIdParams;
let returnType: Promise<null | string>;