///
import { ModalFormAndListLabels, TypedFormInputValidationProps } from '@navikt/sif-common-formik';
import { ValidationError } from '@navikt/sif-common-formik/lib/validation/types';
interface Props extends TypedFormInputValidationProps {
name: FieldNames;
minDate: Date;
maxDate: Date;
labels: ModalFormAndListLabels;
excludeInnlagtQuestion?: boolean;
}
declare function UtenlandsoppholdListAndDialog({ name, minDate, maxDate, validate, labels, excludeInnlagtQuestion, }: Props): JSX.Element;
export default UtenlandsoppholdListAndDialog;