import type { GoTarget } from '../types.js'; export interface ArtifactsOptions { dir?: string; } export interface DiscoveredBinary { target: GoTarget; sourcePath: string; } export declare function artifactsCommand(options?: ArtifactsOptions): Promise;