import { PaymentMethod } from '@prisma/client';
export declare class RecordPaymentDto {
    amount: number;
    currency?: string;
    method: PaymentMethod;
    reference?: string;
    providerPayload?: Record<string, unknown>;
}
