/** * Artifact List Command * Lists all artifacts with optional filtering */ export interface ArtifactListOptions { serverUrl?: string; json?: boolean; status?: string; type?: string; } /** * List all artifacts */ export declare function artifactList(options?: ArtifactListOptions): Promise; //# sourceMappingURL=list.d.ts.map