import React from 'react'; import './style.scss'; export interface SimilarityBarProps { /** Similarity score (0-1) */ similarity: number; /** Show percentage label */ showLabel?: boolean; /** Bar height */ height?: number; /** Animate on mount */ animate?: boolean; /** Custom className */ className?: string; } export declare const SimilarityBar: React.FC; //# sourceMappingURL=SimilarityBar.d.ts.map