export type ContentType = string | { type: 'image'; image: string; } | { type: 'chart'; chart: string; }; interface Props { value: ContentType | ContentType[]; } export default function Content({ value }: Props): import("react/jsx-runtime").JSX.Element | null; export {};