export declare const BucketingStatus: { readonly Pending: "pending"; readonly Completed: "completed"; readonly Failed: "failed"; }; export type BucketingStatus = (typeof BucketingStatus)[keyof typeof BucketingStatus];