/// import { Receipt } from '../../types/index.js'; type ReceiptsViewerProps = { receipts: Receipt[]; appWindow?: { isMinimized?: boolean; order?: number; }; onCloseReceipt: (id: string) => void; }; export default function ReceiptsViewer({ receipts, onCloseReceipt, appWindow }: Readonly): import("react").JSX.Element | null; export {};