@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
13 lines (10 loc) • 570 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as react from 'react';
import { ContextValue } from 'react-aria-components';
import { ProviderProps } from '../../lib/types.js';
import { DetailsListProps } from './types.js';
import 'tailwind-variants';
import './styles.js';
declare const DetailsListContext: react.Context<ContextValue<DetailsListProps, HTMLDListElement>>;
declare function DetailsListProvider({ children, ...props }: ProviderProps<DetailsListProps>): react_jsx_runtime.JSX.Element;
export { DetailsListContext, DetailsListProvider };