import { SfCommand } from '@salesforce/sf-plugins-core'; import { Interfaces } from '@oclif/core'; /** * The functionality of this command is taken entirely from https://github.com/salesforcecli/sfdx-cli/blob/v7.109.0/scripts/clean-for-tarballs */ export default class Prepare extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { dryrun: Interfaces.BooleanFlag; types: Interfaces.BooleanFlag; verbose: Interfaces.BooleanFlag; }; private flags; run(): Promise; private remove; }