/// import { AnnetBarn } from './types'; import './annetBarnList.less'; interface Props { annetBarn: AnnetBarn[]; onEdit?: (annetBarn: AnnetBarn) => void; onDelete?: (annetBarn: AnnetBarn) => void; } declare const AnnetBarnList: ({ annetBarn, onDelete, onEdit }: Props) => JSX.Element; export default AnnetBarnList;