/**
 * 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';
/**
 *
 * @export
 * @interface GetCommentVoteUserNamesSuccessResponse
 */
export interface GetCommentVoteUserNamesSuccessResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetCommentVoteUserNamesSuccessResponse
     */
    status: APIStatus;
    /**
     *
     * @type {Array<string>}
     * @memberof GetCommentVoteUserNamesSuccessResponse
     */
    voteUserNames: Array<string>;
    /**
     *
     * @type {boolean}
     * @memberof GetCommentVoteUserNamesSuccessResponse
     */
    hasMore: boolean;
}
/**
 * Check if a given object implements the GetCommentVoteUserNamesSuccessResponse interface.
 */
export declare function instanceOfGetCommentVoteUserNamesSuccessResponse(value: object): value is GetCommentVoteUserNamesSuccessResponse;
export declare function GetCommentVoteUserNamesSuccessResponseFromJSON(json: any): GetCommentVoteUserNamesSuccessResponse;
export declare function GetCommentVoteUserNamesSuccessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentVoteUserNamesSuccessResponse;
export declare function GetCommentVoteUserNamesSuccessResponseToJSON(json: any): GetCommentVoteUserNamesSuccessResponse;
export declare function GetCommentVoteUserNamesSuccessResponseToJSONTyped(value?: GetCommentVoteUserNamesSuccessResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetCommentVoteUserNamesSuccessResponse.d.ts.map