/**
* A helper to create a Context and Provider with no upfront default value, and
* without having to check for undefined all the time.
*/
export declare function createCtx(name?: string, defaultValue?: A): readonly [
() => A,
import("react").Provider
];
export {};