UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

13 lines (12 loc) 470 B
import { Time } from "@skbkontur/edi-ui"; import React from "react"; interface DateTimePickerWithTimeZone { error?: boolean; defaultTime: Time; value: Nullable<string>; onChange: (value: Nullable<string>) => void; disabled?: boolean; timeZoneEditable?: boolean; } export declare const DateTimePickerWithTimeZone: ({ error, defaultTime, value, onChange, disabled, timeZoneEditable, }: DateTimePickerWithTimeZone) => React.ReactElement; export {};