import type { TextInputProps } from '@gravity-ui/uikit'; import type { CalendarProps } from "../../Calendar/index.js"; import type { DateFieldProps } from "../../DateField/index.js"; import type { RelativeDateFieldProps } from "../RelativeDateField.js"; import type { RelativeDateFieldState } from "./useRelativeDateFieldState.js"; interface RelativeDateProps { inputProps: TextInputProps; calendarProps: CalendarProps; timeInputProps: DateFieldProps; } export declare function useRelativeDateFieldProps(state: RelativeDateFieldState, props: RelativeDateFieldProps): RelativeDateProps; export {};