import * as React from 'react'; interface SettingsGroupProps { /** Optional uppercase header label rendered above the card. */ label?: string; /** Row content — typically `SettingsRow`s separated by `Separator`. */ children: React.ReactNode; /** Extra classes merged onto the rounded card wrapper. */ className?: string; } /** * Rounded card container for a cluster of settings rows, with an optional * uppercase label above. Matches the grouping used on the app's settings * screen — consumer composes `SettingsRow`s inside, interleaving * `Separator` between rows as needed. */ declare function SettingsGroup({ label, children, className }: SettingsGroupProps): import("react/jsx-runtime").JSX.Element; export { SettingsGroup }; export type { SettingsGroupProps }; //# sourceMappingURL=settings-group.d.ts.map