export declare const Context: import("react").Context; declare const Provider: import("react").Provider; /** * A custom react Context consumer exposing the provided `registry` to * children components. Used along with the RegistryProvider. * * You can read more about the react context api here: * https://react.dev/learn/passing-data-deeply-with-context#step-3-provide-the-context * * @example * ```js * import { * RegistryProvider, * RegistryConsumer, * createRegistry * } from '@wordpress/data'; * * const registry = createRegistry( {} ); * * const App = ( { props } ) => { * return *
Hello There
* * { ( registry ) => ( * *
* } * ``` */ export declare const RegistryConsumer: import("react").Consumer; /** * A custom Context provider for exposing the provided `registry` to children * components via a consumer. * * See RegistryConsumer documentation for * example. */ export default Provider; //# sourceMappingURL=context.d.ts.map