import { Place } from "@rr0/place";
import { CmsOrganization } from "../../../CmsOrganization.js";
export declare class Department extends CmsOrganization {
    /**
     *
     * @param code The unique code.
     * @param parent The above hierarchu.
     * @param places The geographical place of the department.
     */
    constructor(code: string, parent: CmsOrganization, places: Place[]);
    static create(code: string, parent: CmsOrganization, place: Place): Department;
}
