UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

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