import { default as React, ReactNode } from 'react'; export interface SettingMenuGroupProps { /** Background style for the group */ background?: "none" | "secondary" | "custom"; /** Custom background className when background="custom" */ backgroundClassName?: string; /** Additional CSS classes */ className?: string; /** Children components */ children: ReactNode; } export declare const SettingMenuGroup: React.FC;