/// <reference types="bluebird" />
import * as Promise from 'bluebird';
import { HudAiCreateAttributes, HudAiListAttributes, HudAiUpdateAttributes, Resource } from '../utils/Resource';
import { RequestManager } from '../RequestManager';
import { Conference } from '../entities';
export interface ConferenceListAttributes extends HudAiListAttributes {
    name?: string;
    personId?: string | string[];
    companyId?: string | string[];
    after?: Date;
    before?: Date;
}
export interface ConferenceListResults {
    count: number;
    rows: Conference[];
}
export interface ConferenceCreateAttributes extends HudAiCreateAttributes {
    name: string;
    description?: string;
    url?: string;
    timezone?: string;
    speakersJobId?: string;
}
export interface ConferenceUpdateAttributes extends HudAiUpdateAttributes {
    name?: string;
    description?: string;
    url?: string;
    timezone?: string;
    speakersJobId?: string;
}
export declare class ConferenceResource extends Resource<Conference, ConferenceListAttributes, ConferenceCreateAttributes, ConferenceUpdateAttributes> {
    constructor(requestManager: RequestManager);
    list(listArgs: ConferenceListAttributes): Promise<ConferenceListResults>;
    create(createArgs: ConferenceCreateAttributes): Promise<Conference>;
    get(id: string | number): Promise<Conference>;
    update(id: string | number, updateArgs: ConferenceUpdateAttributes): Promise<Conference>;
    del(id: string | number): Promise<void>;
    destroy(id: string | number): Promise<void>;
}
