import React from 'react';
interface PreTagProps {
    content: string;
}
declare const PreTag: React.FC<PreTagProps>;
export default PreTag;
