/**
 * 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 { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
import type { ModerationSiteSearchProjected } from './ModerationSiteSearchProjected';
/**
 *
 * @export
 * @interface GetSearchSites200Response
 */
export interface GetSearchSites200Response {
    /**
     *
     * @type {Array<ModerationSiteSearchProjected>}
     * @memberof GetSearchSites200Response
     */
    sites: Array<ModerationSiteSearchProjected>;
    /**
     *
     * @type {APIStatus}
     * @memberof GetSearchSites200Response
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof GetSearchSites200Response
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetSearchSites200Response
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetSearchSites200Response
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetSearchSites200Response
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetSearchSites200Response
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetSearchSites200Response
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetSearchSites200Response
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetSearchSites200Response interface.
 */
export declare function instanceOfGetSearchSites200Response(value: object): value is GetSearchSites200Response;
export declare function GetSearchSites200ResponseFromJSON(json: any): GetSearchSites200Response;
export declare function GetSearchSites200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchSites200Response;
export declare function GetSearchSites200ResponseToJSON(json: any): GetSearchSites200Response;
export declare function GetSearchSites200ResponseToJSONTyped(value?: GetSearchSites200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetSearchSites200Response.d.ts.map