import { DatePickerProps, DateTimePickerProps } from "@mui/x-date-pickers"; import { Moment } from "moment"; import React from "react"; export interface DateTimePickerExtComponentProps extends Omit { wrapperProps?: React.DetailedHTMLProps, HTMLSpanElement>; onChange?: (value: Moment | null, context: any) => void; } export declare const DateTimePickerExtComponent: (props: DateTimePickerExtComponentProps) => React.JSX.Element; export interface DatePickerExtComponentProps extends Omit { wrapperProps?: React.DetailedHTMLProps, HTMLSpanElement>; onChange?: (value: Moment | null, context: any) => void; } export declare const DatePickerExtComponent: (props: DatePickerExtComponentProps) => React.JSX.Element;