HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/orbi-individual/node_modules/react-datepicker/dist/es/input_time.d.ts
import React, { Component } from "react";
interface InputTimeProps {
    onChange?: (date: Date) => void;
    date?: Date;
    timeString?: string;
    timeInputLabel?: string;
    customTimeInput?: JSX.Element;
}
interface InputTimeState {
    time?: string;
}
/**
 * `InputTime` is a React component that manages time input.
 *
 * @component
 * @example
 * <InputTime timeString="12:00" />
 *
 * @param props - The properties that define the `InputTime` component.
 * @param props.onChange - Function that is called when the date changes.
 * @param props.date - The initial date value.
 * @param props.timeString - The initial time string value.
 * @param props.timeInputLabel - The label for the time input.
 * @param props.customTimeInput - An optional custom time input element.
 *
 * @returns The `InputTime` component.
 */
export default class InputTime extends Component<InputTimeProps, InputTimeState> {
    constructor(props: InputTimeProps);
    static getDerivedStateFromProps(props: InputTimeProps, state: InputTimeState): {
        time: string | undefined;
    } | null;
    onTimeChange: (time: InputTimeState["time"]) => void;
    renderTimeInput: () => React.JSX.Element;
    render(): React.JSX.Element;
}
export {};