///
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;
}
declare function BostedUtlandListAndDialog({ name, minDate, maxDate, validate, labels }: Props): JSX.Element;
export default BostedUtlandListAndDialog;