import { FormatType } from '@aesthetic/compiler'; import { Command, GlobalOptions } from '@boost/cli'; export interface CompileOptions extends GlobalOptions { format: FormatType; } export declare type CompileParams = [string, string]; export declare class Compile extends Command { cwd: string; format: FormatType; run(name: string, target: string): Promise; } //# sourceMappingURL=Compile.d.ts.map