export interface UpdateBurialSiteTypeFieldForm { burialSiteTypeFieldId: number | string; burialSiteTypeField: string; isRequired: '0' | '1'; fieldType?: string; minLength?: string; maxLength?: string; pattern?: string; fieldValues: string; } export default function updateBurialSiteTypeField(updateForm: UpdateBurialSiteTypeFieldForm, user: User): Promise;