import type { AccessibilityProps, DomProps, FocusableProps, InputDOMProps, KeyboardEvents, PopupStyleProps, StyleProps, TextInputExtendProps, TextInputProps } from "../types/index.js"; import type { RelativeDateFieldOptions } from "./hooks/useRelativeDateFieldState.js"; import "./RelativeDateField.css"; export interface RelativeDateFieldProps extends RelativeDateFieldOptions, TextInputProps, TextInputExtendProps, DomProps, InputDOMProps, StyleProps, AccessibilityProps, FocusableProps, KeyboardEvents, PopupStyleProps { /** * Show time field in popup * @default false */ hasTime?: boolean; } export declare function RelativeDateField(props: RelativeDateFieldProps): import("react/jsx-runtime").JSX.Element;