import { Bitcoind } from '../../types'; type ValidateAddressParams = { bitcoind: Bitcoind; address: string; }; /** * validateaddress "address" * * Return information about the given bitcoin address. * */ export declare function validateAddress(params: ValidateAddressParams): Promise; export {};