import { SvelteComponent } from "svelte"; /** * A preferences management component that lets users toggle notification channels * per category. */ type Props = { /** * Additional class names to apply to the root container element. */ className?: string; }; declare const __propDef: { props: { className?: Props["className"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type UserPreferencesProps = typeof __propDef.props; export type UserPreferencesEvents = typeof __propDef.events; export type UserPreferencesSlots = typeof __propDef.slots; export default class UserPreferences extends SvelteComponent { } export {};