import { default as React } from 'react'; /** * Props for the OptionalSectionLabel component */ export interface OptionalSectionLabelProps { /** The text to display for the optional label */ text: string; } /** * A reusable component for displaying optional section labels * Used in company details and officer details sections */ export declare const OptionalSectionLabel: React.FC;