import BaseCommand, { BaseArgTypes, BaseFlagTypes } from "../../base";
export default class AuthorsSync extends BaseCommand {
    static summary: string;
    static description: string;
    static args: BaseArgTypes;
    static flags: BaseFlagTypes;
    static examples: string[];
    run(): Promise<void>;
}
