import { ISettingsKeyProvider } from "@omnia/fx/services"; import { PageRollupBlockSettings } from "@omnia/wcm/models"; export declare class PageRollupSettingsProvider implements ISettingsKeyProvider { private onChanged?; private currentProcessStore; constructor(onChanged?: (key: string, value: PageRollupBlockSettings, isUpdate: boolean) => void); protectKeyWithSecurityRole: (securityRoleId: string) => void; private initDefaultBlockData; getValue: (key: string) => Promise; canSetValue: (key: string) => Promise; setValue: (key: string, value: PageRollupBlockSettings) => Promise; private getProcessReference; }