import React from "react";
import { Line, PurchaseDetail } from "../types/purchase";
export interface ReceiptCardProps {
    purchase: PurchaseDetail;
    refund?: (lines: Line[]) => void;
}
export interface ReceiptPriceRowProps {
    title: string;
    price: string;
    currency: string;
}
export declare const ReceiptPriceRow: React.FC<ReceiptPriceRowProps>;
export declare const ReceiptCard: React.FC<ReceiptCardProps>;
