import type { ReactNode } from 'react'; export interface TicketDetailSectionProps { /** Section label displayed as uppercase heading */ label: string; children: ReactNode; className?: string; } export declare function TicketDetailSection({ label, children, className }: TicketDetailSectionProps): import("react").JSX.Element; //# sourceMappingURL=ticket-detail-section.d.ts.map