export default class SeparatedDateTimeWidget extends React.Component { static contextType: React.Context; static propTypes: { schema: PropTypes.Validator; }>>>; value: PropTypes.Requireable; }; constructor(props: any); state: { date: any; time: string | undefined; }; UNSAFE_componentWillReceiveProps(props: any): void; getStateFromProps(props: any): { date: any; time: string | undefined; }; onDateChange: (value: any) => void; onTimeChange: (value: any) => void; render(): JSX.Element; } import * as React from "react"; import * as PropTypes from "prop-types";