import React from "react"; import { componentsV5, componentsV6 } from "../components"; type Components = typeof componentsV5 | typeof componentsV6; export type ComponentVersion = "5" | "6"; export declare const ComponentVersionProvider: ({ version, children, }: { version: ComponentVersion; children: React.ReactNode | React.ReactNode[]; }) => React.JSX.Element; export declare const useComponentVersion: () => Components | undefined; export {}; //# sourceMappingURL=component_version_context.d.ts.map