import { JwtAuthLogLevel } from "./jwt-auth-log-level";
import { StorageType } from "./storage-type";
export declare class JwtAuthConfig {
    tokenUrl: string;
    refreshUrl: string;
    useManualInitialization: boolean;
    logLevel: JwtAuthLogLevel;
    storageType?: StorageType;
}
