@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
16 lines • 709 B
TypeScript
import { type GetStylesApi } from '@mantine/core';
import type { CollectionFactory } from './Collection.js';
import type { CollectionColumnDef } from './CollectionColumn.types.js';
interface CollectionContextType {
getStyles: GetStylesApi<CollectionFactory>;
/**
* Column definitions for the collection (only present when using column-based layout)
*/
columns?: Array<CollectionColumnDef<unknown>>;
}
export declare const CollectionProvider: ({ children, value }: {
value: CollectionContextType;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useCollectionContext: () => CollectionContextType;
export {};
//# sourceMappingURL=CollectionContext.d.ts.map