/// <reference types="react" />
export type CardReactionsContextProps = {
    liked?: boolean;
    loveCount?: number;
    isReplied?: boolean;
    trackingCategory?: string;
    trackingLabel?: string;
    onLikeClick?: () => void;
    onShareClick?: () => void;
    onCommentClick?: () => void;
    onSaveClick?: () => void;
};
export declare const CardReactionsContext: import("react").Context<CardReactionsContextProps>;
