import { SettingsToggleRowProps } from './SettingsToggleRow'; export type AccountingSettingsToggle = SettingsToggleRowProps & { key: string; }; export interface AccountingSettingsSectionProps { toggles: AccountingSettingsToggle[]; } export declare function AccountingSettingsSection({ toggles, }: Readonly): import("react/jsx-runtime").JSX.Element | null;