import { Client } from '../Client';
import { Transaction } from '../types/Transaction';
export interface GetTransactionsResponse {
    transactions: Transaction[];
}
export declare class TransactionStore {
    private readonly client;
    constructor(client: Client);
    getTransactionsById(ids: string[]): Promise<GetTransactionsResponse>;
    private call;
}
