import { KeyValueProviderInterface } from '../utils/keyValueUtils.js';
export declare class LocalTestProvider implements KeyValueProviderInterface {
    name: string;
    description: string;
    poolStorageLocalFileName: string | null;
    initialize(): Promise<boolean>;
    getValue(key?: string | null): Promise<any>;
    setValue(key: string | null | undefined, value: any): Promise<boolean>;
    updateActiveScratchOrg(_scratchOrg: any, _keyValues: any): Promise<null>;
    managePoolStorageLocalFileName(key?: string | null): Promise<void>;
    userSetup(): Promise<boolean>;
    userAuthenticate(): Promise<boolean>;
}
