export declare const HumanLoopStatus: { readonly COMPLETED: "Completed"; readonly FAILED: "Failed"; readonly IN_PROGRESS: "InProgress"; readonly STOPPED: "Stopped"; readonly STOPPING: "Stopping"; }; export type HumanLoopStatus = (typeof HumanLoopStatus)[keyof typeof HumanLoopStatus]; export declare const SortOrder: { readonly ASCENDING: "Ascending"; readonly DESCENDING: "Descending"; }; export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; export declare const ContentClassifier: { readonly FREE_OF_ADULT_CONTENT: "FreeOfAdultContent"; readonly FREE_OF_PERSONALLY_IDENTIFIABLE_INFORMATION: "FreeOfPersonallyIdentifiableInformation"; }; export type ContentClassifier = (typeof ContentClassifier)[keyof typeof ContentClassifier];