import type { BackgroundMaterialType, VibrancyType } from "src/types"; export type GeneralSettings = { apiUrl?: string; experiments?: boolean; staffDevTools?: boolean; badges?: boolean; autoApplyQuickCss?: boolean; showWelcomeNoticeOnOpen?: boolean; addonEmbeds?: boolean; reactDevTools?: boolean; titleBar?: boolean; quickCSS?: boolean; keepToken?: boolean; winUpdater?: boolean; transparency?: boolean; backgroundMaterial?: BackgroundMaterialType; vibrancy?: VibrancyType | null; disableMinimumSize?: boolean; }; export declare const generalSettings: import("src/renderer/apis/settings").SettingsManager;