import { PropsWithChildren } from "react";
export declare const createCTX: <T>() => {
    CTXProvider: ({ children, props, }: PropsWithChildren & {
        props: T;
    }) => import("react/jsx-runtime").JSX.Element;
    useCTX: () => T | undefined;
};
