import { BaseCommand } from '@tngraphql/console'; import { ApplicationContract } from '../../Contracts/ApplicationContract'; export declare class SeedCommand extends BaseCommand { application: ApplicationContract; static commandName: string; static description: string; connection: string; force: boolean; files: string; protected _seedsPath: string; constructor(application: ApplicationContract, kernel: any); handle(): Promise; /** * Throws exception when trying to run migrations are * executed in production and not using force flag. * * @method _validateState * * @param {Boolean} force * * @return {void} * * @private * * @throws {Error} If NODE_ENV is production */ protected _validateState(force: any): void; getResolve(files: any, file: any): any; /** * Returns an object of all schema files * * @method _getSeedFiles * * @return {Object} * * @private */ protected _getSeedFiles(selectedFiles: any): {}; requireAll(options: any): {}; identity(val: any): any; }