import * as express from 'express'; export interface LaunchpadConfig { version?: string; theme?: string; basePath?: string; appConfigPath?: string; locale?: string; template?: string; modulePaths?: object; } export declare class cds_launchpad_plugin { setup(): express.Router; prepareTemplate(options: LaunchpadConfig): Promise; getAppsFromDependencies(packagejson: any): { appDirs: any[]; cwd: string; depsPaths: any[]; }; prepareAppConfigJSON(options: LaunchpadConfig): Promise; } //# sourceMappingURL=index.d.ts.map