import { DataMeta } from "../interfaces/datamodel.interface"; /** * Decorator that automatically logs a read audit entry after the method executes. * * @param meta - The entity metadata (provides labelName for audit) * @param id - The route param name to extract the entity ID (e.g., "cullId", "rollId") */ export declare function Audit(meta: DataMeta, id: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; //# sourceMappingURL=audit.decorator.d.ts.map