import type { LandingPageTemplate } from '../types'; /** * Template: Menu * * Template para menús de restaurante con secciones, items y combos. * Ideal para menús navideños o especiales con estructura compleja. */ export declare const menuTemplate: LandingPageTemplate; /** * TypeScript types para el content del template Menu * Estos tipos se generan automáticamente basándose en el schema */ export interface MenuItem { name: string; details?: string; priceSmall?: string; priceLarge?: string; price?: string; } export interface MenuSection { title: string; items: MenuItem[]; } export interface Combo { name: string; price: string; items: string[]; } export interface FooterItem { title: string; titleStrong: string; } export interface CTAButton { text: string; href: string; } export interface MenuTemplateContent { imageUrl?: string; headerTitle: string; headerSubtitle: string; headerText: string; menuSectionTitle: string; combosTitle: string; menuSections: MenuSection[]; combos?: Combo[]; footerTitle: string; footerItems: FooterItem[]; footerCtaButtons: CTAButton[]; footerText: string; } //# sourceMappingURL=menu.d.ts.map