import { ReactElement } from 'react'; import { TextProps } from './Text'; import { Control } from './types'; /** Props for {@link DateTime}. The value is UTC nanoseconds since the Unix epoch. */ export interface DateTimeProps extends Omit, Control { } /** * A combined date and time field over UTC nanoseconds, shown in local time. A dropdown * offers plain-language entry ("yesterday at 3pm") and a nanosecond offset. */ export declare const DateTime: ({ value, onChange, onBlur, onlyChangeOnBlur, variant, preview, ...rest }: DateTimeProps) => ReactElement; //# sourceMappingURL=DateTime.d.ts.map