import { Command } from 'commander';
export interface ApiCommandOpts {
}
export declare class ApiCommand {
    static readonly name: string;
    static readonly description: string;
    static init(app: Command): Promise<void>;
}
