import type { PropsWithChildren } from 'react'; interface DetailSectionProps { label?: string; tooltipContent?: JSX.Element | string; className?: string; } export declare function DetailSection({ label, tooltipContent, className, children, }: PropsWithChildren): JSX.Element; export {};