import Conf from "conf"; export interface RevealPasswordHash { salt: string; hash: string; N: number; r: number; p: number; keyLen: number; } export declare const config: Conf<{ privateKeys: string[]; isLocked: boolean; tryKeychain: boolean; networks: { chain: string; endpoints: string[]; }[]; currentChain: string; endpoints?: { chain: string; endpoints: string[]; }[] | undefined; revealPasswordHash?: RevealPasswordHash | undefined; }>;