import React from "react"; import type { ThemeObject } from "../../style/themes"; import { NewValidationContextProps } from "./__internal__/new-validation.context"; export interface CarbonProviderProps extends NewValidationContextProps { children: React.ReactNode; /** Theme which specifies styles to apply to all child components. Set to `sageTheme` by default. */ theme?: Partial; } export declare const CarbonProvider: ({ children, theme, validationRedesignOptIn, }: CarbonProviderProps) => React.JSX.Element; export default CarbonProvider;