import React from 'react'; import type { CalendarProps } from "../Calendar/index.js"; import type { AccessibilityProps, DomProps, FocusableProps, InputDOMProps, KeyboardEvents, PopupStyleProps, StyleProps, TextInputProps } from "../types/index.js"; import type { RelativeDatePickerStateOptions } from "./hooks/useRelativeDatePickerState.js"; import "./RelativeDatePicker.css"; export interface RelativeDatePickerProps extends RelativeDatePickerStateOptions, TextInputProps, FocusableProps, KeyboardEvents, DomProps, InputDOMProps, StyleProps, AccessibilityProps, PopupStyleProps { children?: (props: CalendarProps) => React.ReactNode; /** Handler that is called when the popup's open state changes. */ onOpenChange?: (open: boolean) => void; } export declare function RelativeDatePicker(props: RelativeDatePickerProps): import("react/jsx-runtime").JSX.Element;