import { Check, ServiceOptions } from '../types'; export default class { private service; private serviceOptions; constructor(basePath: string, baseOptions: ServiceOptions); get(id: string): Promise; getAll(orgID: string): Promise; create(check: Check): Promise; update(id: string, check: Partial): Promise; delete(id: string): Promise; }