/**
 * Generated by orval v8.9.1 🍺
 * Do not edit manually.
 * Api
 * API specification for The Astro Lounge
 * OpenAPI spec version: 0.1.0
 */
export interface HealthStatus {
    status: string;
}
export interface MenuItem {
    id: number;
    name: string;
    description: string;
    price: number;
    category: string;
    imageUrl: string;
    isPopular?: boolean;
    dietaryTags?: string[];
}
export interface MenuCategory {
    name: string;
    itemCount: number;
    description?: string;
}
export interface BookingInput {
    /** @minLength 1 */
    name: string;
    email: string;
    phone?: string;
    /** Date in YYYY-MM-DD format */
    date: string;
    /** Time in HH:MM format */
    time: string;
    /**
       * @minimum 1
       * @maximum 50
       */
    partySize: number;
    specialRequests?: string;
}
export interface BookingConfirmation {
    success: boolean;
    message: string;
}
export interface ContactInput {
    /** @minLength 1 */
    name: string;
    email: string;
    /** @minLength 1 */
    message: string;
}
export interface ContactConfirmation {
    success: boolean;
    message: string;
}
//# sourceMappingURL=api.schemas.d.ts.map