import { DateTime } from 'luxon'; import { ShoppingList } from '../types/types'; export declare const getLunchMenu: ({ year, month, day }: DateTime) => Promise; export declare const getBreakfastMenu: ({ year, month, day }: DateTime) => Promise; export declare const getShoppingList: (date: DateTime) => Promise;