import type { IApiBaseEntity } from '../../interface/api-base-entity.interface';
/**
 * Analyzes entity metadata using the MetadataStorage singleton class.
 * Currently only retrieves metadata but doesn't perform further operations.
 * @param {IApiBaseEntity} entity - The entity to analyze metadata for
 * @returns {void}
 */
export declare function analyzeEntityMetadata(entity: IApiBaseEntity): void;
