import { Command } from '@oclif/core';

type FlagValues = {
    [key: string]: boolean | string | string[] | number | undefined;
};
declare abstract class BaseCommand extends Command {
    passThroughFlags(flags: FlagValues): string[];
}

export { BaseCommand as default };
