/// 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; dagDescription?: JSX.Element; labels: ModalFormAndListLabels; formHeaderContent?: JSX.Element; dateRangesToDisable?: DateRange[]; helgedagerIkkeTillatt?: boolean; maksArbeidstidPerDag?: number; } declare function FraværDagerListAndDialog({ name, minDate, maxDate, validate, dagDescription, labels, formHeaderContent, dateRangesToDisable, helgedagerIkkeTillatt, maksArbeidstidPerDag, }: Props): JSX.Element; export default FraværDagerListAndDialog;