import type React from "react"; import type { ThemeType } from "../theme"; import { type ComponentVariant } from "./ComponentVariantContext"; import { type FeatureFlags } from "./FeatureFlagsContext"; type NDSProviderProps = { theme?: ThemeType; locale?: string; disableGlobalStyles?: boolean; children?: React.ReactNode; variant?: ComponentVariant; featureFlags?: FeatureFlags; }; declare function NDSProvider({ theme: customTheme, children, disableGlobalStyles, locale, variant, featureFlags, }: NDSProviderProps): import("react/jsx-runtime").JSX.Element; export default NDSProvider;