UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

13 lines (12 loc) 446 B
import { GetStylesApi } from '../../core'; import type { ListFactory } from './List'; interface ListContextValue { getStyles: GetStylesApi<ListFactory>; center: boolean | undefined; icon: React.ReactNode | undefined; } export declare const ListProvider: ({ children, value }: { value: ListContextValue; children: import("react").ReactNode; }) => import("react").JSX.Element, useListContext: () => ListContextValue; export {};