@refinedev/core
Version:
refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.
18 lines • 549 B
text/typescript
import React, { type ReactNode } from "react";
type MetaContextValue = Record<string, any>;
export declare const MetaContext: React.Context<MetaContextValue>;
/**
* Is used to provide meta data to the children components.
* @internal
*/
export declare const MetaContextProvider: ({ children, value, }: {
children: ReactNode;
value: MetaContextValue;
}) => React.JSX.Element;
/**
* @internal
* @returns The MetaContext value.
*/
export declare const useMetaContext: () => MetaContextValue;
export {};
//# sourceMappingURL=index.d.ts.map