import { TransactionStatus, TransactionType } from '../../enums';
/**
 * DTO representing a capture transaction in the response
 */
export declare class CaptureTransactionDTO {
    readonly amount: number;
    readonly id: string;
    readonly status: TransactionStatus;
    readonly type: TransactionType;
}
