import { AccessToken, CommanderParent } from "../../core";
import { Department } from "./department.class";
export declare class DepartmentsCommander extends CommanderParent {
    constructor(accessToken: AccessToken);
    create(department: Department): Promise<Department>;
    update(department: Department): Promise<void>;
    delete(id: number): Promise<void>;
    find(parentId?: number): Promise<Department[]>;
}
