import { ISettingsKeyProvider } from "../../../fx/services"; export declare class OmniaSpfxSettingsProvider implements ISettingsKeyProvider { protectKeyWithSecurityRole: (securityRoleId: string) => void; getValue: (key: string) => Promise; canSetValue: (key: string) => Promise; setValue: (key: string, value: any) => Promise; ensureMigration: (scope: string, controlId: string, newKey: string, transformData?: (migratedValue: any) => any) => Promise; }