import { ReactNode } from 'react';
export type CallStatsProps = {
    latencyLowBound?: number;
    latencyHighBound?: number;
    audioJitterLowBound?: number;
    audioJitterHighBound?: number;
    videoJitterLowBound?: number;
    videoJitterHighBound?: number;
    showCodecInfo?: boolean;
    LatencyChartSuspenseFallback?: ReactNode;
};
export declare const CallStats: (props: CallStatsProps) => import("react/jsx-runtime").JSX.Element;
export declare const StatCard: (props: {
    label: string;
    value: string | ReactNode;
    description?: string;
    comparison?: {
        value: number;
        highBound: number;
        lowBound: number;
    };
}) => import("react/jsx-runtime").JSX.Element;
