interface ListDescriptionProps { description: string | React.ReactElement | React.ReactElement[]; } /** * ListDescription displays a description for a list item. * Strings render as a `

`, ReactElements render in a `

`. * If the description is an empty string, the component will return null. * * @example * * } /> */ export declare function ListDescription({ description }: ListDescriptionProps): import("react/jsx-runtime").JSX.Element | null; export {};