/**
 * 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 { FComment } from './FComment';
import type { QuestionResult } from './QuestionResult';
/**
 *
 * @export
 * @interface FindCommentsByRangeItem
 */
export interface FindCommentsByRangeItem {
    /**
     *
     * @type {FComment}
     * @memberof FindCommentsByRangeItem
     */
    comment: FComment | null;
    /**
     *
     * @type {QuestionResult}
     * @memberof FindCommentsByRangeItem
     */
    result: QuestionResult;
}
/**
 * Check if a given object implements the FindCommentsByRangeItem interface.
 */
export declare function instanceOfFindCommentsByRangeItem(value: object): value is FindCommentsByRangeItem;
export declare function FindCommentsByRangeItemFromJSON(json: any): FindCommentsByRangeItem;
export declare function FindCommentsByRangeItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): FindCommentsByRangeItem;
export declare function FindCommentsByRangeItemToJSON(json: any): FindCommentsByRangeItem;
export declare function FindCommentsByRangeItemToJSONTyped(value?: FindCommentsByRangeItem | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=FindCommentsByRangeItem.d.ts.map