import { type EvolveEntryItemOption } from '../types/types-entry-map.js'; /** * Normalizes the check entry options. * * @param serveMode - A boolean indicating whether the serve mode is enabled. * @param currEntryOption - The current entry option. * @param ignoreOptionKeys - An array of keys to ignore in the entry option. * @returns The normalized entry options. */ export declare const normalizeCheckEntryOptions: (serveMode: boolean, currEntryOption?: EvolveEntryItemOption, ignoreOptionKeys?: Array) => Partial | undefined;