import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: description** * * Each article may include a description, as below: * * ```json * { * "title": "...", * "description": "Some description", * "body": [ ... ] * } * ``` * * As such, the JSON format in itself does not actually include a `description` component type. However, the JSON -> HTML renderer will implicitly transform the description to a component, such that the above description becomes * * ```json * { * "type": "description", * "children": "Some description" * } * ``` * * This can be used for e.g. styling purposes, where you'll be able to use the `.dcs-description` CSS selector. */ declare function Lead({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { Lead };