import { EntryObj } from './Entry'; import { Config } from '../config/argv'; export declare const fromTemplates: (file: string) => string; export declare type EntryMap = Record; export declare class Entries { static writeApp(config: Config, dev: boolean): Promise; static writeImports(map: EntryMap): Promise; all: Map; get: () => Promise; repoEditUrl: string | null; constructor(config: Config); private getMap; }