import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: legalDate** * * Container for the effectiveFrom and publishedAt values for legal documents. Contains attributes with the raw values, but also children with proper translated text that can be displayed to the user. * * Attributes: * effectiveFrom: has the format YYYY-MM-DD * publishedAt: has the format YYYY-MM-DD * Children: [paragraph paragraph] * * The children have a very specific structure as well. [See docs](https://github.com/volvo-cars/support-shared/blob/master/support-commons-importer/docs/JSON_FORMAT.md#legaldate): * * Note: Only for legal documents. * * @param children * @param props * @constructor */ declare function LegalDate({ children, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { LegalDate };