import { CaptureTransactionDTO } from './capture-transaction.dto';
/**
 * DTO representing a payment in the capture response
 */
export declare class CapturePaymentDTO {
    readonly payment_id: string;
    readonly transaction: CaptureTransactionDTO;
}
