1 | import type { SystemContext } from "./types";
|
2 | declare const useChakraContext: () => SystemContext;
|
3 | export interface ChakraProviderProps {
|
4 | value: SystemContext;
|
5 | children: React.ReactNode;
|
6 | }
|
7 | declare function ChakraProvider(props: ChakraProviderProps): import("react/jsx-runtime").JSX.Element;
|
8 | export { ChakraProvider, useChakraContext };
|