/**
 * 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 { APIComment } from './APIComment';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface APIGetCommentsResponse
 */
export interface APIGetCommentsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof APIGetCommentsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {Array<APIComment>}
     * @memberof APIGetCommentsResponse
     */
    comments: Array<APIComment>;
}
/**
 * Check if a given object implements the APIGetCommentsResponse interface.
 */
export declare function instanceOfAPIGetCommentsResponse(value: object): value is APIGetCommentsResponse;
export declare function APIGetCommentsResponseFromJSON(json: any): APIGetCommentsResponse;
export declare function APIGetCommentsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIGetCommentsResponse;
export declare function APIGetCommentsResponseToJSON(json: any): APIGetCommentsResponse;
export declare function APIGetCommentsResponseToJSONTyped(value?: APIGetCommentsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APIGetCommentsResponse.d.ts.map