/** * Retrieves the item's name, preferring the "name_" property and falling back to "_name". * * @param item - The item object that may contain a name. * @returns The name from the item if it exists; otherwise, undefined. */ interface ItemLike { name_?: string; _name?: string; } export declare const getItemName: (item: ItemLike | null | undefined) => string | undefined; export {};