export interface Expense { expenseIdentifier?: string; expenseName: string; location: string; currency: string; cost: number; quantity: number; totalCost: number; remarks: string; }