export declare class ContentTypeSystemAttributes {
    /**
    * Id of the type
    */
    id: string;
    /**
     * Name of the type
     */
    name: string;
    /**
     * Codename of the type
     */
    codename: string;
    /**
     * Date of last modification
     */
    lastModified: Date;
    constructor(data: {
        id: string;
        name: string;
        codename: string;
        lastModified: Date;
    });
}
