import type { ListCardItemBackgroundColorScheme, ListCardItemBorderColorScheme, ListCardItemSizeVariant, ListCardItemVariant } from '../ListCardItem';
export type ListCardContextValue = {
    size: ListCardItemSizeVariant;
    variant: ListCardItemVariant;
    contentTrailingRatio: number;
    backgroundColorScheme: ListCardItemBackgroundColorScheme;
    borderColorScheme: ListCardItemBorderColorScheme | undefined;
    interactive: boolean;
};
export declare const ListCardContext: import("react").Context<ListCardContextValue | undefined>;
export declare const useListCardContext: () => ListCardContextValue | undefined;
