import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { AttendanceCounters } from '../models/AttendanceCounters';
import { CollectionResponseWithTotalParticipationBreakdown } from '../models/CollectionResponseWithTotalParticipationBreakdown';
export declare class ParticipantStateApiRequestFactory extends BaseAPIRequestFactory {
    getParticipationsBreakdownByContactId(contactIdentifier: string, after?: string, limit?: number, state?: string, _options?: Configuration): Promise<RequestContext>;
    getParticipationsBreakdownByExternalEventId(externalAccountId: string, externalEventId: string, after?: string, contactIdentifier?: string, limit?: number, state?: string, _options?: Configuration): Promise<RequestContext>;
    getParticipationsBreakdownByMarketingEventId(marketingEventId: number, after?: string, contactIdentifier?: string, limit?: number, state?: string, _options?: Configuration): Promise<RequestContext>;
    getParticipationsCountersByEventExternalId(externalAccountId: string, externalEventId: string, _options?: Configuration): Promise<RequestContext>;
    getParticipationsCountersByMarketingEventId(marketingEventId: number, _options?: Configuration): Promise<RequestContext>;
}
export declare class ParticipantStateApiResponseProcessor {
    getParticipationsBreakdownByContactIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseWithTotalParticipationBreakdown>>;
    getParticipationsBreakdownByExternalEventIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseWithTotalParticipationBreakdown>>;
    getParticipationsBreakdownByMarketingEventIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseWithTotalParticipationBreakdown>>;
    getParticipationsCountersByEventExternalIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<AttendanceCounters>>;
    getParticipationsCountersByMarketingEventIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<AttendanceCounters>>;
}
