import { Command, type CommandFlags } from '../../command.js'; import { Flags } from '@oclif/core'; type Flags = CommandFlags & { output?: string; }; export default class CompositeCompile extends Command { static strict: boolean; static description: string; run(): Promise; } export {};