export interface Builder { env: string; hasInitialBuild: boolean; build(): Promise; dev(start: () => void): void | Promise; }