import { Command, flags } from '@oclif/command'; export default class ProjectsCreate extends Command { static description: string; static aliases: string[]; static flags: { name: flags.IOptionFlag; hourRate: flags.IOptionFlag; }; run(): Promise; }