/**
 * @typedef {import('../../core/types.js').ConfigObject} ConfigObject
 */
/**
 * Asynchronously print relevant details about the current system which can be used to report bugs.
 * @param {ConfigObject} [configObject = dco]
 * @async
 */
export default function info(configObject?: ConfigObject): Promise<void>;
export type ConfigObject = import("../../core/types.js").ConfigObject;
