import React from 'react';
import { type TrustStatus } from '../getTrustStatus';
import '../styles/badge.css';
export interface AutoInsertTrustBadgesProps {
    emails: string[];
    containerRef?: React.RefObject<HTMLElement>;
    onError?: (error: Error) => void;
    onLoad?: (data: TrustStatus[]) => void;
}
/**
 * React helper component that auto-inserts badges next to matching email text
 * in the DOM (similar to the vanilla render function). Renders nothing itself.
 */
export declare const AutoInsertTrustBadges: React.FC<AutoInsertTrustBadgesProps>;
export default AutoInsertTrustBadges;
