import { ReactionMap } from '@veltdev/types';
import React from 'react';
export interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    targetReactionElementId?: string;
    darkMode?: boolean;
    variant?: string;
    shadowDom?: boolean;
    customReactions?: ReactionMap;
}
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
export default VeltInlineReactionsSection;
