import { PropsWithChildrenAndClassName } from '../../types'; interface TimeProps extends PropsWithChildrenAndClassName { datetime?: string; value?: string; } /** * **JSON-format type: time** * * At the moment, this only represents a date - there probably won't be a need to represent times or datetimes in the future. As such, it might be a bit awkwardly named, but the intention is to mimic the [time HTML tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time). * * Attributes: * * `datetime`: the date in `YYYY-MM-DD` format. * * `value`: the date formatted according to local language formatting rules. * * _Note: Only for legal documents (at the time of this writing)._ * * Children: - * * @param value * @param datetime * @param className * @param props * @constructor */ declare function Time({ value, datetime, className, ...props }: TimeProps): import("react/jsx-runtime").JSX.Element; export { Time };