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<IGetResponse>;
    read(params: ICreateParams): Promise<ICreateResponse>;
}
