/**
 * Show package version
 */
declare function showVersion(): Promise<void>;
/**
 * Check if command is valid
 */
declare function isValidCommand(command: string | undefined): Promise<boolean>;
/**
 * Initialize the selected configuration
 */
declare function init(): Promise<void>;

export { init, isValidCommand, showVersion };
