/**
 * This code was generated by
 * \ / _    _  _|   _  _
 *  | (_)\/(_)(_|\/| |(/_  v1.0.0
 *       /       /
 */

import Domain = require('../base/Domain');
import Twilio = require('./Twilio');
import V1 = require('./events/V1');
import { EventTypeListInstance } from './events/v1/eventType';
import { SchemaListInstance } from './events/v1/schema';
import { SinkListInstance } from './events/v1/sink';
import { SubscriptionListInstance } from './events/v1/subscription';


declare class Events extends Domain {
  /**
   * Initialize events domain
   *
   * @param twilio - The twilio client
   */
  constructor(twilio: Twilio);

  readonly eventTypes: EventTypeListInstance;
  readonly schemas: SchemaListInstance;
  readonly sinks: SinkListInstance;
  readonly subscriptions: SubscriptionListInstance;
  readonly v1: V1;
}

export = Events;
