import type { ListCardItemSizeVariant } from '../ListCardItem';
export type DataListCardContextValue = {
    size: ListCardItemSizeVariant;
    loading: boolean;
    showNoOptions: boolean;
};
export declare const DataListCardContextDefaultValue: DataListCardContextValue;
export declare const DataListCardContext: import("react").Context<DataListCardContextValue>;
export declare const useDataListCardContext: () => DataListCardContextValue;
