import { Dayjs } from "dayjs"; import { DateOrTimeView } from "@mui/x-date-pickers"; export default function CustomDateTimePicker({ value, onChange, views, }: { value?: Dayjs; onChange: (newValue: Dayjs) => void; views?: DateOrTimeView[]; }): import("react/jsx-runtime").JSX.Element;