import { Bitcoind } from '../../types';
type GetDeploymentInfoParams = {
    bitcoind: Bitcoind;
    blockhash?: string;
};
/**
 * getdeploymentinfo ( "blockhash" )
 *
 * Returns an object containing various state info regarding deployments of consensus changes.
 *
 */
export declare function getDeploymentInfo(params: GetDeploymentInfoParams): Promise<any>;
export {};
