import 'reflect-metadata';
import { Constructor } from '../types';
export declare const serializeKey: unique symbol;
export declare function Serialize(entityConstructor: Constructor<unknown>): {
    (target: Function): void;
    (target: Object, propertyKey: string | symbol): void;
};
