// Config Form Section Components // Reusable components for both global and camera-level settings export { createConfigSection, type BaseSectionProps, type SectionConfig, type CreateSectionOptions, } from "./BaseSection"; export { DetectSection } from "./DetectSection"; export { RecordSection } from "./RecordSection"; export { SnapshotsSection } from "./SnapshotsSection"; export { MotionSection } from "./MotionSection"; export { ObjectsSection } from "./ObjectsSection"; export { ReviewSection } from "./ReviewSection"; export { AudioSection } from "./AudioSection"; export { AudioTranscriptionSection } from "./AudioTranscriptionSection"; export { BirdseyeSection } from "./BirdseyeSection"; export { AuthSection } from "./AuthSection"; export { ClassificationSection } from "./ClassificationSection"; export { CameraMqttSection } from "./CameraMqttSection"; export { CameraUiSection } from "./CameraUiSection"; export { DatabaseSection } from "./DatabaseSection"; export { DetectorsSection } from "./DetectorsSection"; export { EnvironmentVarsSection } from "./EnvironmentVarsSection"; export { FaceRecognitionSection } from "./FaceRecognitionSection"; export { FfmpegSection } from "./FfmpegSection"; export { GenaiSection } from "./GenaiSection"; export { LprSection } from "./LprSection"; export { LoggerSection } from "./LoggerSection"; export { NotificationsSection } from "./NotificationsSection"; export { OnvifSection } from "./OnvifSection"; export { LiveSection } from "./LiveSection"; export { ModelSection } from "./ModelSection"; export { MqttSection } from "./MqttSection"; export { NetworkingSection } from "./NetworkingSection"; export { ProxySection } from "./ProxySection"; export { SemanticSearchSection } from "./SemanticSearchSection"; export { TelemetrySection } from "./TelemetrySection"; export { TimestampSection } from "./TimestampSection"; export { TlsSection } from "./TlsSection"; export { UiSection } from "./UiSection";