import { flags, SfdxCommand } from "@salesforce/command"; import { AnyJson } from "@salesforce/ts-types"; export default class CreateScripts extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected static flagsConfig: { url: flags.Discriminated; scriptname: flags.Discriminated; }; generateScript(scriptUrl: any): Promise; replaceOrgUrl(input: any, orgUrl: any): any; run(): Promise; }