import React from "react"; interface ThemeSettingsCardProps { currentTheme: "light" | "dark" | "system"; onThemeChange: (theme: "light" | "dark" | "system") => void; } declare const _default: React.NamedExoticComponent; export default _default;