import { SfCommand } from '@salesforce/sf-plugins-core'; import type { DiagramOutputFormat } from '../../../types/index.js'; type RenderFormat = DiagramOutputFormat | 'svg' | 'pdf'; export type DiagramRenderResult = { format: RenderFormat; out?: string; bytes: number; }; export default class DiagramRender extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { input: import("@oclif/core/interfaces").OptionFlag; format: import("@oclif/core/interfaces").OptionFlag; out: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } export {};