UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

9 lines (8 loc) 422 B
import { GetStylesApi } from '../../core'; import type { EmptyStateFactory } from './EmptyState'; interface EmptyStateContextValue { getStyles: GetStylesApi<EmptyStateFactory>; withIndicatorBackground: boolean | undefined; } export declare const EmptyStateProvider: import("react").Context<EmptyStateContextValue | null>, useEmptyStateContext: () => EmptyStateContextValue; export type { EmptyStateContextValue };