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