export interface AppInfo { name: string; title: string; description: string; } declare const SettingsApp: ({ theme: currentTheme, setTheme, setShowAppSettings, appInfo, onAppInfoChange, }: { theme: string; setTheme: (theme: string) => void; setShowAppSettings: React.Dispatch>; appInfo?: AppInfo; onAppInfoChange: (appInfo: AppInfo) => void; }) => import("react/jsx-runtime").JSX.Element; export default SettingsApp; //# sourceMappingURL=SettingsApp.d.ts.map