import { Command, Interfaces } from '@oclif/core';
export default class UploadMacos extends Command {
static description: string;
static flags: {
root: Interfaces.OptionFlag<string>;
targets: Interfaces.OptionFlag<string | undefined>;
};
run(): Promise<void>;
}