export interface IApplicationInfo { name: string; version: string; description: string; license: string; homepage: string; author: string | object; contributors: Array; repository: string | object; bugs: string | object; } export declare function setDatabasePaths(sqlitePath: string): void; export declare function getSqliteStoragePath(sqlitePath?: string): string; export declare function getUserConfigFolder(): string; export declare function readConfigFile(env: string, ...pathSegments: Array): TResult; export declare function readPackageJson(): IApplicationInfo;