import { FC } from 'react'; interface IProps { index: number; remove: () => void; length: number; className?: string; } declare const SectionLabel: FC; export default SectionLabel;