export interface BookingNewPageProps { productId?: string; slotId?: string; } export default function BookingNewPage({ productId, slotId }: BookingNewPageProps): import("react").JSX.Element;