export function handler(argv: any): Promise<void>;
export function listInstances(prompts: any): Promise<{
    name: any;
    last_operation: string;
}[] | undefined>;
export const command: "hdi";
export const aliases: string[];
export const describe: string;
export function builder(yargs: any): any;
export namespace inputPrompts {
    namespace cf {
        export let description: string;
        export let type: string;
        let _default: boolean;
        export { _default as default };
        export let required: boolean;
    }
}
