/// import { DateRange } from '@navikt/sif-common-core/lib/utils/dateUtils'; 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; periodeDescription?: JSX.Element; formHeaderContent?: JSX.Element; dateRangesToDisable?: DateRange[]; begrensTilSammeÅr?: boolean; helgedagerIkkeTillat?: boolean; begrensTilSammeÅrAlertStripeTekst?: string; } declare function FraværPerioderListAndDialog({ name, minDate, maxDate, dateRangesToDisable, periodeDescription, formHeaderContent, begrensTilSammeÅr, begrensTilSammeÅrAlertStripeTekst, validate, labels, helgedagerIkkeTillat, }: Props): JSX.Element; export default FraværPerioderListAndDialog;