/** * The source that created the run: * * `"ADMIN"` - Created by admin * * `"BATCH_PROCESSOR_RUN"` - Created from a batch run * * `"PLAYGROUND"` - Created from playground * * `"WORKFLOW_CONFIGURATION"` - Created from workflow configuration * * `"WORKFLOW_RUN"` - Created from a workflow run * * `"STUDIO"` - Created from Studio * * `"API"` - Created via API */ export declare const RunSource: { readonly Admin: "ADMIN"; readonly BatchProcessorRun: "BATCH_PROCESSOR_RUN"; readonly Playground: "PLAYGROUND"; readonly WorkflowConfiguration: "WORKFLOW_CONFIGURATION"; readonly WorkflowRun: "WORKFLOW_RUN"; readonly Studio: "STUDIO"; readonly Api: "API"; }; export type RunSource = (typeof RunSource)[keyof typeof RunSource] | string;