UNPKG

@wix/design-system

Version:

@wix/design-system

15 lines 753 B
import React from 'react'; import PropTypes from 'prop-types'; import { WixStyleReactEnvironmentProviderProps } from './WixStyleReactEnvironmentProvider.types'; /** A wrapper component for an app to hold cross library global configuration such as locale, rtl and others */ declare const WixStyleReactEnvironmentProvider: { ({ locale, pageHeaderId, children, }: WixStyleReactEnvironmentProviderProps): React.JSX.Element; displayName: string; propTypes: { locale: PropTypes.Requireable<string>; pageHeaderId: PropTypes.Requireable<string>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; }; }; export default WixStyleReactEnvironmentProvider; //# sourceMappingURL=WixStyleReactEnvironmentProvider.d.ts.map