/// import { ModalFormAndListLabels, TypedFormInputValidationProps } from '@navikt/sif-common-formik'; import { AnnetBarn } from './types'; import { ValidationError } from '@navikt/sif-common-formik/lib/validation/types'; interface Props extends TypedFormInputValidationProps { name: FieldNames; labels: ModalFormAndListLabels; minDate: Date; maxDate: Date; disallowedFødselsnumre?: string[]; aldersGrenseText?: string; placeholderFnr?: string; placeholderNavn?: string; visBarnTypeValg?: boolean; onAfterChange?: (andreBarn: AnnetBarn[]) => void; } declare function AnnetBarnListAndDialog({ name, validate, labels, minDate, maxDate, disallowedFødselsnumre, aldersGrenseText, placeholderFnr, placeholderNavn, visBarnTypeValg, onAfterChange, }: Props): JSX.Element; export default AnnetBarnListAndDialog;