import { Type } from "@tsed/core";
import { JsonEntityStore } from "@tsed/schema";
export declare class PropertyMetadata extends JsonEntityStore {
    static get(target: Type<any>, propertyKey: string | symbol): PropertyMetadata;
    /**
     * @deprecated Since 2020-11-11. Use getProperties from @tsed/schema
     */
    static getProperties(target: Type<any>, options?: Partial<{
        withIgnoredProps: boolean;
    }>): Map<string | number | symbol, JsonEntityStore>;
}
