import { List } from "immutable"; import { ActionSpanId } from "../types"; import { JsonSerializable } from "../json-serializable"; export declare class StartStoryActionAddArtifactData implements JsonSerializable { private name; private spanId; private associatedTestRuns?; constructor(name: string, spanId: ActionSpanId, associatedTestRuns?: List | undefined); asJson(): any; }