/// import { ModalFormAndInfoLabels, TypedFormInputValidationProps } from '@navikt/sif-common-formik'; import { Virksomhet } from './types'; import { ValidationError } from '@navikt/sif-common-formik/lib/validation/types'; interface Props extends TypedFormInputValidationProps { name: FieldNames; labels: ModalFormAndInfoLabels; skipOrgNumValidation?: boolean; harFlereVirksomheter?: boolean; onAfterChange?: (virksomhet: Virksomhet) => void; } declare function VirksomhetInfoAndDialog({ name, labels, skipOrgNumValidation, harFlereVirksomheter, validate, onAfterChange, }: Props): JSX.Element; export default VirksomhetInfoAndDialog;