import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type BodyProps = { aria?: { [key: string]: string; }; className?: string; children?: React.ReactChild[] | React.ReactChild; color?: 'default' | 'light' | 'lighter' | 'link' | 'error' | 'success'; dark?: boolean; data?: { [key: string]: string; }; highlightedText?: string[]; highlighting?: boolean; id?: string; status?: 'neutral' | 'negative' | 'positive'; tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div'; text?: string; truncate?: null | '1' | '2' | '3' | '4' | '5'; variant?: null | 'link'; } & GlobalProps; declare const Body: (props: BodyProps) => React.ReactElement; export default Body;