12 lines
448 B
TypeScript
12 lines
448 B
TypeScript
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
|
|
}
|