import React from 'react'; import { DateFieldProps } from 'react-admin'; import { LabeledFieldProps } from '../../../config'; interface TzTimeFieldProps extends LabeledFieldProps { timezoneSource: string; source: string; } export declare function TzTimeField(props: TzTimeFieldProps): React.JSX.Element; export {};