import * as React from 'react'; interface ISHProps { name?: string; level: number; website?: string; startDate?: string; endDate?: string; releaseDate?: string; } declare const SectionHeader: ({ name, level, website, startDate, endDate, releaseDate, className }: ISHProps & React.HTMLAttributes) => JSX.Element; export default SectionHeader;