import BaseItemModel from '../Abstract/BaseItemModel.js'; import BaseModel from '../Abstract/BaseModel.js'; declare class OrganisationChannelModel extends BaseModel { items: never[]; unTransformedItems: never[]; constructor(entities: any); } declare class OrganisationChannelByOrganisationIdModel extends BaseModel { items: never[]; unTransformedItems: never[]; constructor(entities: any); } declare class OrganisationChannelItemModel extends BaseItemModel { channel: null; organisation: null; handle: string; channelName: null; constructor(entity: any); getChannel: () => null; getProject: () => null; getHandle: () => string; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => { [x: string]: any; }; static __transformItemToApiOfUpdation: (data: any) => { [x: string]: any; }; } export { OrganisationChannelByOrganisationIdModel, OrganisationChannelItemModel, OrganisationChannelModel };