import React from "react"; import { Line } from "../types/purchase"; export declare const HIDDEN_ITEM_TYPES: string[]; export interface ReceiptTableProps { currency: string; lines: Line[]; editable?: boolean; onSelect?: (selected: Line[]) => void; } export declare const ReceiptTable: React.FC;