/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { APIStatus } from './APIStatus';
import type { QuestionResultAggregationOverall } from './QuestionResultAggregationOverall';
/**
 *
 * @export
 * @interface AggregateQuestionResultsResponse
 */
export interface AggregateQuestionResultsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof AggregateQuestionResultsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {QuestionResultAggregationOverall}
     * @memberof AggregateQuestionResultsResponse
     */
    data: QuestionResultAggregationOverall;
}
/**
 * Check if a given object implements the AggregateQuestionResultsResponse interface.
 */
export declare function instanceOfAggregateQuestionResultsResponse(value: object): value is AggregateQuestionResultsResponse;
export declare function AggregateQuestionResultsResponseFromJSON(json: any): AggregateQuestionResultsResponse;
export declare function AggregateQuestionResultsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateQuestionResultsResponse;
export declare function AggregateQuestionResultsResponseToJSON(json: any): AggregateQuestionResultsResponse;
export declare function AggregateQuestionResultsResponseToJSONTyped(value?: AggregateQuestionResultsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregateQuestionResultsResponse.d.ts.map