/**
 * 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 { ModerationPageSearchProjected } from './ModerationPageSearchProjected';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetSearchPagesResponse
 */
export interface GetSearchPagesResponse {
    /**
     *
     * @type {Array<ModerationPageSearchProjected>}
     * @memberof GetSearchPagesResponse
     */
    pages: Array<ModerationPageSearchProjected>;
    /**
     *
     * @type {APIStatus}
     * @memberof GetSearchPagesResponse
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof GetSearchPagesResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetSearchPagesResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetSearchPagesResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetSearchPagesResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetSearchPagesResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetSearchPagesResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetSearchPagesResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetSearchPagesResponse interface.
 */
export declare function instanceOfGetSearchPagesResponse(value: object): value is GetSearchPagesResponse;
export declare function GetSearchPagesResponseFromJSON(json: any): GetSearchPagesResponse;
export declare function GetSearchPagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchPagesResponse;
export declare function GetSearchPagesResponseToJSON(json: any): GetSearchPagesResponse;
export declare function GetSearchPagesResponseToJSONTyped(value?: GetSearchPagesResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetSearchPagesResponse.d.ts.map