export default class BlockService { db: any; userInfo: any; blockModel: any; constructor(dbpath: any); create(params: any): Promise; update(id: any, params: any): Promise; detail(blockId: any): Promise; delete(blockId: any): Promise; list(): Promise; find(params: any): Promise; findByLabel(label: any): Promise; }