UNPKG

@ozen-ui/kit

Version:

React component library

11 lines (10 loc) 556 B
import type { ListCardItemSizeVariant, ListCardItemVariant } from './entities'; import type { ListCardItemHoverControl } from './hooks/hover/types'; export type ListCardItemContextValue = { size: ListCardItemSizeVariant; variant: ListCardItemVariant; hoverControl: ListCardItemHoverControl; }; export declare const ListCardItemContextDefaultValue: ListCardItemContextValue; export declare const ListCardItemContext: import("react").Context<ListCardItemContextValue>; export declare const useListCardItemContext: () => ListCardItemContextValue;