export interface StartArguments { port: string; registry: string; http: string; plugin: string[] | undefined; customPlugin: string[] | undefined; } declare const start: (args: StartArguments) => void; export default start;