import { BaseComponentProps, Size } from '../types.js'; export interface KeyFingerprintProps extends Omit { /** The fingerprint string, e.g. "A1B2-C3D4-E5F6-G7H8". */ fingerprint: string; /** Optional label shown above the fingerprint. */ label?: string; size?: Size; /** Copy the fingerprint to clipboard on click. */ copyable?: boolean; /** Optional accent color (hex string) shown as a left-border highlight. */ color?: string; } export declare function KeyFingerprint({ fingerprint, label, size, copyable, color, style, ...rest }: KeyFingerprintProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=key-fingerprint.d.ts.map