export interface ReceiptLine { id: string; label: string; amount: string; } interface ReceiptCardProps { title?: string; receiptNumber?: string; paidAt?: string; method?: string; customer?: string; lines?: ReceiptLine[]; total?: string; currencyNote?: string; class?: string; ondownload?: () => void; onviewinvoice?: () => void; } declare const ReceiptCard: import("svelte").Component; type ReceiptCard = ReturnType; export default ReceiptCard;