import type { BedTypeSelection } from "@/types/components/hotelReservation/enterDetails/bedType" import { StepEnum } from "@/types/enums/step" import type { BreakfastPackage } from "../components/hotelReservation/enterDetails/breakfast" export interface StepsProviderProps extends React.PropsWithChildren { bedTypes: BedTypeSelection[] breakfastPackages: BreakfastPackage[] | null isMember: boolean searchParams: string step: StepEnum }