UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

7 lines (6 loc) 291 B
import { GetStylesApi } from '../../core'; import type { CardFactory } from './Card'; export interface CardContextValue { getStyles: GetStylesApi<CardFactory>; } export declare const CardProvider: import("react").Context<CardContextValue | null>, useCardContext: () => CardContextValue;