import { Organisation, OrganisationAttributes } from '../stores/class/general/organisation'; import { VideoConfig } from '../stores/class/config/videoConfig'; /** * Retrieve an organisation by ID * @param organisationId The ID of the organisation * @return An organisation */ declare function get(organisationId: string): Promise; /** * Retrieve all organisations specified by their IDs * @param organisationIds A list of organisation IDs. For better result, they should be unique. * @return The matching organisations */ declare function getAllById(organisationIds: Array): Promise>; /** * Retrieve the attributes of a given organisation * @param organisationId The ID of the organisation * @returns The attributes of the organisation */ declare function getAttributes(organisationId: string): Promise; /** * Retrieve the video configuration of a given organisation * @param organisationId The ID of the organisation * @returns The video configuration of the organisation */ declare function getVideoConfig(organisationId: string): Promise; export declare const organisationApi: { get: typeof get; getAllById: typeof getAllById; getAttributes: typeof getAttributes; getVideoConfig: typeof getVideoConfig; }; export {};