///
import { LearnMoreProps } from "../util/LearnMore";
import { WithoutTheme, WithTheme } from "../types";
export declare type ContentItemProps = WithTheme<{
label: string;
description: string;
}> & WithoutTheme;
export declare function ContentItem({ label, description, linkText, onClick, linkNode, ...props }: ContentItemProps): JSX.Element;