import { Builder, OutActionSendMsg, Writable } from '@ton/core';
export declare class InternalMessage implements Writable {
    readonly queryId: number;
    readonly actions: OutActionSendMsg[];
    /**
     * @dev internal_transfer#ae42e5a4 n:# query_id:uint64 actions:^OutList n = InternalMsgBody n
     */
    static readonly TAG = 2923619748;
    constructor(queryId: number, actions: OutActionSendMsg[]);
    writeTo(builder: Builder): void;
    toCell(): import("@ton/core").Cell;
}
