import { ClassType } from '../_types';
/**
 * @deprecated - If you want to extend a class, use the ´extends´ keyword.
 * @param data - The data to extend the class.
 * @constructor
 */
export declare function DtoClass<T extends ClassType<unknown>>(data: {
    extends: T[];
}): (target: ClassType<unknown>) => void;
