import type { InvoiceStatus } from '../../organisms/InvoicePage/InvoicePage.svelte'; export interface InvoiceListItem { id: string; number: string; customer: string; date: string; dueDate?: string; amount: string; status: InvoiceStatus; } interface InvoiceListProps { title?: string; invoices?: InvoiceListItem[]; query?: string; class?: string; onview?: (invoice: InvoiceListItem) => void; ondownload?: (invoice: InvoiceListItem) => void; oncreate?: () => void; } declare const InvoiceList: import("svelte").Component; type InvoiceList = ReturnType; export default InvoiceList;