import { ComponentChildren } from '../../shared/children'; export interface TimeProps { /** * The content of the Time. */ children?: ComponentChildren; /** * Set the time and/or date of the element. * * It must be a valid date string. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time#valid_datetime_values * * @default '' */ dateTime?: string; }