import { Joi } from '../helpers'; import type { IEntityType } from './entityType'; export interface IEntitiesRequestParams { organisationId: string; } export declare const entitiesRequestParamsSchema: Joi.ObjectSchema; export declare type EntitiesResponse = IEntityType[]; export declare const entitiesResponseSchema: Joi.ArraySchema;