import { Command, type CommandFlags } from '../../command.js'; import { Flags } from '@oclif/core'; type Flags = CommandFlags & { output?: string; }; export default class CompositeFromModel extends Command { static strict: boolean; static description: string; static flags: { output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'ceramic-url': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'did-private-key': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; }; run(): Promise; } export {};