import { Bitcoind } from '../../types'; type SetLabelParams = { bitcoind: Bitcoind; address: string; label: string; }; /** * setlabel "address" "label" * * Sets the label associated with the given address. * */ export declare function setLabel(params: SetLabelParams): Promise; export {};