export declare class PosPaymentTransaction {
    id: number;
    sale_id: number;
    sale_payment_id: number;
    store_id: number;
    method_id: number;
    provider_id: number;
    transaction_code: string;
    provider_transaction_code: string;
    amount: number;
    currency: string;
    transaction_type: string;
    transaction_status: string;
    request_payload_json: Record<string, unknown> | null;
    response_payload_json: Record<string, unknown> | null;
    paid_at: Date;
    created_at: Date;
    updated_at: Date;
}
