import ExecCommand from '../ExecCommand';
export declare class InstallCommand extends ExecCommand<void> {
    execute(hap: string): Promise<void>;
}
export declare class UninstallCommand extends ExecCommand<void> {
    execute(bundleName: string): Promise<void>;
}
