import { Type } from "./type"; /** * Class decorator for annotating the namespace of a class. * * @export * @param {Function} ctor The decorated class. */ export declare function Namespace(namespace: string): (type: Type) => void; /** * Class decorator for annotating the full name of a class. * * @export * @param {Function} ctor The decorated class. */ export declare function FullName(fullName: string): (type: Type) => void;