import { ListParams, ListResponse } from "../type"; import { RoleInfo, RoleParams } from "../type/system"; declare class System { roleList: { data: RoleInfo[]; } & ListResponse; constructor(); getRoleList(params: ListParams): Promise<{ data: RoleInfo[]; } & ListResponse>; clear(): void; } export default System;