import { InferredTransaction } from './rosetta';
interface LastEvaluatedKey {
    pk: string;
    sk: string;
    userId: string;
}
export interface GetUserTransactionResponse {
    total: number;
    transactions: InferredTransaction[];
    lastEvaluatedKey?: LastEvaluatedKey;
}
export declare const getCapTransactions: (principalId: string, lastEvaluatedKey?: string | undefined) => Promise<GetUserTransactionResponse>;
declare const _default: {};
export default _default;
