import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type DetailProps = { aria?: { [key: string]: string; }; bold?: boolean; children?: React.ReactChild[] | React.ReactChild; className?: string; color?: 'light' | 'default' | 'lighter' | 'link' | 'error' | 'success'; dark?: boolean; data?: { [key: string]: string; }; id?: string; tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'div'; text?: string; } & GlobalProps; declare const Detail: (props: DetailProps) => JSX.Element; export default Detail;