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;
