import { BaseCommand } from '../base-command.js'; export default class Preview extends BaseCommand { static args: { file: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { live: import("@oclif/core/interfaces").BooleanFlag; open: import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; private preview; private waitForChanges; }