import { PropsWithChildren } from 'react'; import { SettingsContextProps } from './types'; export declare const SettingsContext: import("react").Context>; interface ProviderProps { settings: SettingsContextProps; children: React.ReactNode; } export declare const SettingsProvider: ({ settings, children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};