import type { z } from "zod" import type { ancillaryPackageInputSchema, breakfastPackageInputSchema, roomPackagesInputSchema, } from "@/server/routers/hotels/input" import type { packagesSchema } from "@/server/routers/hotels/output" export interface BreackfastPackagesInput extends z.input {} export interface AncillaryPackagesInput extends z.input {} export interface PackagesInput extends z.input {} export type Packages = z.output