/**
 * 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 { QuestionConfig } from './QuestionConfig';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetQuestionConfigResponse
 */
export interface GetQuestionConfigResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetQuestionConfigResponse
     */
    status: APIStatus;
    /**
     *
     * @type {QuestionConfig}
     * @memberof GetQuestionConfigResponse
     */
    questionConfig: QuestionConfig;
}
/**
 * Check if a given object implements the GetQuestionConfigResponse interface.
 */
export declare function instanceOfGetQuestionConfigResponse(value: object): value is GetQuestionConfigResponse;
export declare function GetQuestionConfigResponseFromJSON(json: any): GetQuestionConfigResponse;
export declare function GetQuestionConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionConfigResponse;
export declare function GetQuestionConfigResponseToJSON(json: any): GetQuestionConfigResponse;
export declare function GetQuestionConfigResponseToJSONTyped(value?: GetQuestionConfigResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetQuestionConfigResponse.d.ts.map