import { Bitcoind } from '../../types.js';
type GetBlockFilterParams = {
    bitcoind: Bitcoind;
    blockhash: string;
    filtertype?: string;
};
/**
 * getblockfilter "blockhash" ( "filtertype" )
 *
 * Retrieve a BIP 157 content filter for a particular block.
 *
 */
export declare function getBlockFilter(params: GetBlockFilterParams): Promise<any>;
export {};
//# sourceMappingURL=get-block-filter.d.ts.map