/// import { Fosterbarn } from './types'; interface Props { fosterbarn: Fosterbarn[]; onEdit?: (opphold: Fosterbarn) => void; onDelete?: (opphold: Fosterbarn) => void; } declare const FosterbarnList: ({ fosterbarn, onDelete, onEdit }: Props) => JSX.Element; export default FosterbarnList;