import type { InputDefinition } from '../../../config/workspace-json-project-json'; import type { ShowTargetBaseOptions } from '../command-object'; import { type ResolvedTarget } from './utils'; export declare function showTargetInfoHandler(args: ShowTargetBaseOptions): Promise; export type TargetInfoData = ReturnType; declare function resolveTargetInfoData(t: ResolvedTarget): { sourceMap?: Record; defaultConfiguration?: string; configurations?: string[]; options: any; outputs?: string[]; inputs?: (string | InputDefinition)[]; _inputSources?: number[]; parallelism: boolean; continuous: boolean; cache: boolean; dependsOn?: string[]; _depSources?: number[]; customHasher?: boolean; command?: string; _commandSourceKey?: string; executor: string; configuration?: string; project: string; target: string; }; export {};