import { Lazy } from "lazy-val"; import { Configuration } from "../configuration"; export type MetadataValue = Lazy<{ [key: string]: any; } | null>; export declare function getElectronVersion(projectDir: string, config?: Configuration): Promise; export declare function getElectronVersionFromInstalled(projectDir: string): Promise; export declare function getElectronPackage(projectDir: string): Promise;