import { flags } from '@oclif/command'; import * as chokidar from 'chokidar'; import BaseCommand from '../../base-command'; declare const skipInstall = "skip-install"; export default class BuildViews extends BaseCommand { static description: string; static hidden: boolean; static flags: { [skipInstall]: import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; path: flags.IOptionFlag; silent: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: never[]; run(): Promise; transpile: () => void; watchNonTsFiles: (watchedPath: string, destPath: string) => Promise; } export {};