#!/usr/bin/env node
/**
 * Display the Source and Domain Name of the currently deployed infrastructure.
 * It first checks the AWS connection, then retrieves the details of the hosting configuration.
 * If a hosting configuration exists, it prints the Source and its associated Domain Name.
 * If no hosting configuration is found, it informs the user that there is no domain name available
 * as no infrastructure has been deployed yet.
 */
export declare function handleShowCommand(): Promise<void>;
