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