import type { LoggerOptions } from "@azure/msal-common/node";
import { DataProtectionScope } from "./DataProtectionScope.js";
export interface IPersistenceConfiguration {
    cachePath?: string;
    dataProtectionScope?: DataProtectionScope;
    serviceName?: string;
    accountName?: string;
    usePlaintextFileOnLinux?: boolean;
    loggerOptions?: LoggerOptions;
}
