import { type SecurityDetection } from '@particle-network/auth-core';
import React from 'react';
interface Prop {
    securityDetection: SecurityDetection[];
    className?: string;
    title?: string;
}
declare const RiskTypography: (prop: Prop) => React.JSX.Element;
export default RiskTypography;
