export declare const ActStatus: { readonly FAILED: "FAILED"; readonly PENDING_CLIENT_ACTION: "PENDING_CLIENT_ACTION"; readonly PENDING_HUMAN_ACTION: "PENDING_HUMAN_ACTION"; readonly RUNNING: "RUNNING"; readonly SUCCEEDED: "SUCCEEDED"; readonly TIMED_OUT: "TIMED_OUT"; }; export type ActStatus = (typeof ActStatus)[keyof typeof ActStatus]; export declare const InternalServerExceptionReason: { readonly INVALID_MODEL_GENERATION: "InvalidModelGeneration"; readonly TOKEN_LIMIT_EXCEEDED: "RequestTokenLimitExceeded"; }; export type InternalServerExceptionReason = (typeof InternalServerExceptionReason)[keyof typeof InternalServerExceptionReason]; export declare const ValidationExceptionReason: { readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed"; readonly GUARDRAIL_INTERVENED: "GuardrailIntervened"; readonly INVALID_STATUS: "InvalidStatus"; }; export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; export declare const SortOrder: { readonly ASC: "Ascending"; readonly DESC: "Descending"; }; export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; export declare const TraceLocationType: { readonly S3: "S3"; }; export type TraceLocationType = (typeof TraceLocationType)[keyof typeof TraceLocationType]; export declare const ModelStatus: { readonly ACTIVE: "ACTIVE"; readonly DEPRECATED: "DEPRECATED"; readonly LEGACY: "LEGACY"; readonly PREVIEW: "PREVIEW"; }; export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus]; export declare const WorkflowDefinitionStatus: { readonly ACTIVE: "ACTIVE"; readonly DELETING: "DELETING"; }; export type WorkflowDefinitionStatus = (typeof WorkflowDefinitionStatus)[keyof typeof WorkflowDefinitionStatus]; export declare const WorkflowRunStatus: { readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly RUNNING: "RUNNING"; readonly SUCCEEDED: "SUCCEEDED"; readonly TIMED_OUT: "TIMED_OUT"; }; export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];