import { flags, SfdxCommand } from '@salesforce/command'; export declare type CreateResult = { message: string; testPath: string; className: string; elementName: string; }; export default class Create extends SfdxCommand { static description: string; static longDescription: string; static examples: string[]; protected static requiresProject: boolean; protected static flagsConfig: { filepath: flags.Discriminated; }; run(): Promise; }