import { HederaAgentKit, BaseServiceBuilder } from 'hedera-agent-kit';
import { HbarTransferParams } from './types';

/**
 * Custom AccountBuilder that properly handles HBAR decimal conversion
 */
export declare class AccountBuilder extends BaseServiceBuilder {
    constructor(hederaKit: HederaAgentKit);
    /**
     * Transfers HBAR between accounts with proper decimal handling
     */
    transferHbar(params: HbarTransferParams, isUserInitiated?: boolean): this;
}
