export interface NotificationSettingItem { id: string; title: string; description?: string; checked: boolean; } interface NotificationSettingsGroupProps { title: string; description?: string; items: NotificationSettingItem[]; class?: string; onchange?: (id: string, checked: boolean) => void; } declare const NotificationSettingsGroup: import("svelte").Component; type NotificationSettingsGroup = ReturnType; export default NotificationSettingsGroup;