/**
 * 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 { FeedPostStats } from './FeedPostStats';
import type { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetFeedPostsStatsResponse
 */
export interface GetFeedPostsStatsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetFeedPostsStatsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {{ [key: string]: FeedPostStats; }}
     * @memberof GetFeedPostsStatsResponse
     */
    stats: {
        [key: string]: FeedPostStats;
    };
    /**
     *
     * @type {string}
     * @memberof GetFeedPostsStatsResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetFeedPostsStatsResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetFeedPostsStatsResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetFeedPostsStatsResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetFeedPostsStatsResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetFeedPostsStatsResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetFeedPostsStatsResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetFeedPostsStatsResponse interface.
 */
export declare function instanceOfGetFeedPostsStatsResponse(value: object): value is GetFeedPostsStatsResponse;
export declare function GetFeedPostsStatsResponseFromJSON(json: any): GetFeedPostsStatsResponse;
export declare function GetFeedPostsStatsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPostsStatsResponse;
export declare function GetFeedPostsStatsResponseToJSON(json: any): GetFeedPostsStatsResponse;
export declare function GetFeedPostsStatsResponseToJSONTyped(value?: GetFeedPostsStatsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetFeedPostsStatsResponse.d.ts.map