import { Bitcoind } from '../../types'; type GetAddressesByLabelParams = { bitcoind: Bitcoind; label: string; }; /** * getaddressesbylabel "label" * * Returns the list of addresses assigned the specified label. * */ export declare function getAddressesByLabel(params: GetAddressesByLabelParams): Promise; export {};