/// import { BostedUtland } from './types'; export interface BostedUtlandFormLabels { tittel: string; } interface Props { minDate: Date; maxDate: Date; bosted?: BostedUtland; alleBosteder?: BostedUtland[]; onSubmit: (values: BostedUtland) => void; onCancel: () => void; } export declare const BostedUtlandFormErrors: { fom: { dateHasNoValue: string; dateIsAfterMax: string; dateIsBeforeMin: string; dateHasInvalidFormat: string; fromDateIsAfterToDate: string; }; tom: { dateHasNoValue: string; dateIsAfterMax: string; dateIsBeforeMin: string; dateHasInvalidFormat: string; toDateIsBeforeFromDate: string; }; landkode: { noValue: string; }; }; declare const BostedUtlandForm: ({ maxDate, minDate, bosted, alleBosteder, onSubmit, onCancel }: Props) => JSX.Element; export default BostedUtlandForm;