import { BaseCommand } from '@adonisjs/core/ace';
import type { CommandOptions } from '@adonisjs/core/types/ace';
export default class MakeMail extends BaseCommand {
    static commandName: string;
    static description: string;
    static options: CommandOptions;
    /**
     * The name of the mail file.
     */
    name: string;
    /**
     * Define the intent suffix for the mail
     */
    intent?: string;
    /**
     * Execute command
     */
    run(): Promise<void>;
}
