import { DataType } from '../models/data.type'; export declare function Data(type: DataType): (target: Object, property: string | symbol) => void; export declare function hasData(instance: T, property: keyof T): boolean; export declare function getDataModel(instance: T, property: keyof T): DataType | null;