/** * * `ACTIVE` - ACTIVE * * `INACTIVE` - INACTIVE */ export declare const FeedStatusEnum: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type FeedStatusEnum = (typeof FeedStatusEnum)[keyof typeof FeedStatusEnum];