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