import { Command } from 'commander'; import { SeedOptions } from './types.js'; /** * Seed command - seed a non-production Roma MySQL database from the latest * dated backup in the seed bucket, via the roma-seeder ECS task. */ export declare const seedCommand: Command; /** * Handle the seed command. */ declare function handleSeed(system: string, env: string | undefined, options: SeedOptions): Promise; export { handleSeed }; //# sourceMappingURL=index.d.ts.map