import { BostedUtland, BostedUtlandFormValues } from './types'; declare const bostedUtlandUtils: { isValidBostedUtland: (bosted: Partial) => bosted is BostedUtland; mapBostedUtlandToFormValues: ({ fom, tom, landkode }: Partial) => BostedUtlandFormValues; mapFormValuesToBostedUtland: (formValues: BostedUtlandFormValues, id: string | undefined) => Partial; }; export default bostedUtlandUtils;