/** Event types available for webhook endpoints at the global level. Includes run events and resource lifecycle events. */ export declare const WebhookEndpointEventType: { readonly ParseRunProcessed: "parse_run.processed"; readonly ParseRunFailed: "parse_run.failed"; readonly EditRunProcessed: "edit_run.processed"; readonly EditRunFailed: "edit_run.failed"; readonly ExtractRunProcessed: "extract_run.processed"; readonly ExtractRunFailed: "extract_run.failed"; readonly ClassifyRunProcessed: "classify_run.processed"; readonly ClassifyRunFailed: "classify_run.failed"; readonly SplitRunProcessed: "split_run.processed"; readonly SplitRunFailed: "split_run.failed"; readonly BatchProcessorRunProcessed: "batch_processor_run.processed"; readonly BatchProcessorRunFailed: "batch_processor_run.failed"; readonly BatchParseRunProcessed: "batch_parse_run.processed"; readonly BatchParseRunFailed: "batch_parse_run.failed"; readonly ExtractorCreated: "extractor.created"; readonly ExtractorUpdated: "extractor.updated"; readonly ExtractorDeleted: "extractor.deleted"; readonly ExtractorDraftUpdated: "extractor.draft.updated"; readonly ExtractorVersionPublished: "extractor.version.published"; readonly ClassifierCreated: "classifier.created"; readonly ClassifierUpdated: "classifier.updated"; readonly ClassifierDeleted: "classifier.deleted"; readonly ClassifierDraftUpdated: "classifier.draft.updated"; readonly ClassifierVersionPublished: "classifier.version.published"; readonly SplitterCreated: "splitter.created"; readonly SplitterUpdated: "splitter.updated"; readonly SplitterDeleted: "splitter.deleted"; readonly SplitterDraftUpdated: "splitter.draft.updated"; readonly SplitterVersionPublished: "splitter.version.published"; readonly WorkflowCreated: "workflow.created"; readonly WorkflowDeployed: "workflow.deployed"; readonly WorkflowDeleted: "workflow.deleted"; }; export type WebhookEndpointEventType = (typeof WebhookEndpointEventType)[keyof typeof WebhookEndpointEventType] | string;