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<any>) => 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<any>) => void;
