import ClientConfiguration from './model/ClientConfiguration';
import SessionsService from './sessions/service/SessionsService';
import ActionsService from './actions/service/ActionsService';
import ChannelsService from './channels/service/ChannelsService';
export default class ChannelApeClient {
    private readonly sessionId;
    private readonly timeout;
    private readonly endpoint;
    private readonly sessionsService;
    private readonly actionsService;
    private readonly channelsService;
    constructor(clientConfiguration: ClientConfiguration);
    readonly SessionId: string;
    readonly Timeout: number;
    readonly Endpoint: string;
    sessions(): SessionsService;
    actions(): ActionsService;
    channels(): ChannelsService;
}
