import { Command } from "commander";
export interface Options {
    figSpecCommandName?: string;
}
export declare function generateCompletionSpec(command: Command, options?: Options): Promise<string | undefined>;
export declare function addCompletionSpecCommand(command: Command): void;
