export type SettingsTab = "profile" | "workspace" | "billing" | "notifications" | string; interface SettingsContextValue { activeTab: SettingsTab; openSettings: (tab?: SettingsTab) => void; closeSettings: () => void; setActiveTab: (tab: SettingsTab) => void; } export declare function useSettings(): SettingsContextValue; export declare function SettingsProvider({ children, }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SettingsContext.d.ts.map