import type { Invoice } from '@ksefnik/shared'; export declare class InvoiceStore { private invoices; seed(invoices: Invoice[]): void; add(invoice: Invoice): void; getAll(): Invoice[]; getByDateRange(from: string, to: string): Invoice[]; clear(): void; } //# sourceMappingURL=invoice-store.d.ts.map