@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
13 lines (12 loc) • 448 B
TypeScript
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: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useListContext: () => ListContextValue;
export {};