/**
 * 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 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;
}
//# sourceMappingURL=bookingInput.d.ts.map