import type { FieldMeta } from "../Decorator/FieldMeta"; /** * Returns the metadata entry for a field, creating an empty one on first * access. * @param target - The class prototype. * @param propertyKey - The field to look up. * @returns The field's metadata entry. */ export declare const getFieldMeta: (target: object, propertyKey: PropertyKey) => FieldMeta;