import { Bitcoind } from '../../types';
type SetWalletFlagParams = {
    bitcoind: Bitcoind;
    flag: string;
    value?: boolean;
};
/**
 * setwalletflag "flag" ( value )
 *
 * Change the state of the given wallet flag for a wallet.
 *
 */
export declare function setWalletFlag(params: SetWalletFlagParams): Promise<any>;
export {};
