import { Command } from '../command';
/**
 * Info command.
 */
export declare class Info extends Command {
    /**
     * Description.
     */
    static readonly description = "display info about program";
    /**
     * Examples.
     */
    static readonly examples: never[];
    /**
     * Flags.
     */
    static readonly flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
    };
    /**
     * Arguments.
     */
    static readonly args: never[];
    /**
     * Handler.
     */
    run(): Promise<void>;
}
export default Info;
