import React from 'react'; export interface UiSettingsSectionClasses { sectionContainer?: string; title?: string; body?: string; } export interface UiSettingsSectionProps { classes?: UiSettingsSectionClasses; title: string; body: React.ReactNode; } export declare const UiSettingsSection: ({ classes, title, body, }: UiSettingsSectionProps) => JSX.Element;