import { Entity } from '../@shared/entity'; import { IGetModuleActionsParams, IGetModuleActionsResponse } from './interfaces/get-module-actions.interface'; import { IGetModuleSituationsParams, IGetModuleSituationsResponse } from './interfaces/get-module-situations.interface'; import { IGetModuleTransitionsParams, IGetModuleTransitionsResponse } from './interfaces/get-module-transitions.interface'; import { IGetModulesResponse } from './interfaces/get-modules.interface'; export declare class SituacoesModulos extends Entity { getModules(): Promise; getModuleSituations(params: IGetModuleSituationsParams): Promise; getModuleActions(params: IGetModuleActionsParams): Promise; getModuleTransitions(params: IGetModuleTransitionsParams): Promise; }