import * as React from 'react'; interface ILabelDetailProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; } declare const LabelDetail: (props: ILabelDetailProps) => JSX.Element; export { LabelDetail, ILabelDetailProps };