import { default as React } from 'react';
interface SSNDisplayProps {
    ssn: string;
}
declare const SSNDisplay: React.FC<SSNDisplayProps>;
export default SSNDisplay;
