import { SfCommand } from '@salesforce/sf-plugins-core'; export type ExtractHtmlToMarkdownResult = { out?: string; bytes: number; }; export default class ExtractHtmlToMarkdown extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { input: import("@oclif/core/interfaces").OptionFlag; out: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }