/**
 * Auth command using Sign In With Ethereum
 * @notice The auth command allows a user to make the association of their Ethereum account with the CLI by leveraging SIWE as an authentication mechanism.
 * @dev Under the hood, the command handles a manual Device Flow following the guidelines in the SIWE documentation.
 */
declare const authSIWE: () => Promise<void>;
export default authSIWE;
