/// import { TextInputProps } from '../TextInput/TextInput'; import ValidationState from '../../enums/ValidationState'; export { ValidationState }; export declare type UTCDateTimeProps = TextInputProps; export declare const UTCDateTimeInput: (props: TextInputProps) => JSX.Element; export default UTCDateTimeInput; export declare function toLocalDateTime(value: string | null): string | null; export declare function toUtcDateTime(value: string | null): string | null;