export declare class TransactionListQuery {
    private readonly offset;
    private readonly limit;
    private readonly address;
    constructor(offset: number, limit: number, address: string);
    toJSONBody(): string;
}
