import { SfCommand } from '@salesforce/sf-plugins-core'; import { CreateOutput } from '@salesforce/templates'; export default class GenerateSite extends SfCommand { static readonly state = "preview"; static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag; name: import("@oclif/core/interfaces").OptionFlag; 'template-name': import("@oclif/core/interfaces").OptionFlag; 'url-path-prefix': import("@oclif/core/interfaces").OptionFlag; 'admin-email': import("@oclif/core/interfaces").OptionFlag; 'output-dir': import("@oclif/core/interfaces").OptionFlag; }; /** * Resolves the default output directory by reading the project's sfdx-project.json. * Returns the path to the default package directory, * or falls back to the current directory if not in a project context. */ private static getDefaultOutputDir; run(): Promise; }