import Nomalism from '@nomalism-com/types'; import { IModuleConstructor } from '../../main'; export default class Repository implements Nomalism.Tickets.IRepository { route: string; private api; constructor({ api, route }: IModuleConstructor); create(body: Nomalism.Tickets.ITicketCreateRequest): Promise; findToday(): Promise; update(body: Nomalism.Tickets.ITicketUpdateRequest): Promise; undoLastCall(): Promise; }