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