import ICategoryInsights from "./ICategoryResume";
export default interface IIncomeExpense {
    date: number;
    categories: ICategoryInsights[];
    amount: number;
}
