UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

10 lines (9 loc) 290 B
import type { SkeletonShow } from '../Skeleton'; export type ListVariant = 'basic'; export type ListContext = { variant: ListVariant; separated: boolean; skeleton?: SkeletonShow; disabled?: boolean; }; export declare const ListContext: import("react").Context<ListContext>;