import { Entity } from '../@shared/entity'; import { ICreateParams, ICreateResponse } from './interfaces/create.interface'; import { IGetParams, IGetResponse } from './interfaces/get.interface'; export declare class Notificacoes extends Entity { get(params?: IGetParams): Promise; read(params: ICreateParams): Promise; }