import { Command } from '@contentstack/cli-command';
import { FlagInput } from '@contentstack/cli-utilities';
export default class SeedCommand extends Command {
    static description: string;
    static examples: string[];
    static usage: string;
    static flags: FlagInput;
    static aliases: string[];
    run(): Promise<{
        api_key: string;
    } | undefined>;
}
