import { Refable } from "@trackunit/react-components"; export interface RelativeDateTimeProps extends Refable { value: Date | string | number | null | undefined; } /** * DateTimeHumanized component * * @param { RelativeDateTimeProps } props - The properties for the DateTimeHumanized component. * @param props.value Date | string | number | null | undefined */ export declare const DateTimeHumanized: ({ value, ref }: RelativeDateTimeProps) => import("react/jsx-runtime").JSX.Element;