/** * list of actions which are controlled by plan */ export declare enum ActionLists { 'ENQUIRY_CREATE' = 0, 'TESTIMONIAL_CREATE' = 1, 'TESTIMONIAL_VIEW' = 2, 'SETTING_COPYRIGHT_VIEW' = 3, 'PRODUCT_VIEW_RECOMMENDATION' = 4, 'BLOG_VIEW' = 5, 'LOOKBOOK_VIEW' = 6 } export declare const ActionNameList: { [key: string]: string; }; export declare type ActionListKeyType = keyof typeof ActionLists; export declare type AllowedFeatureContextValueType = { [key in ActionListKeyType]?: boolean; };