import { TargetOutputItem } from '../../types';
/**
 * Finds out which usable item it is
 * and its type
 * `output` or `target`
 * @param {string} name
 * @return {Object}
 */
export default function (name: string): Partial<TargetOutputItem> | null;
