export declare enum PublishingApprovalSettingsTypes { Anyone = 0, LimitedUsers = 1, TermDriven = 2, PersonProperty = 3, Group = 4 } export interface PublishingApprovalSettings { type: PublishingApprovalSettingsTypes; } /** * NOTE: whenever an new property is added in settings, we need to define its initial value in factory * To ensure it fully react on view * */ export declare const PublishingApprovalSettingsFactory: { createDefault(type: PublishingApprovalSettingsTypes): PublishingApprovalSettings; };