/**
 * EVE Swagger Interface
 * An OpenAPI for EVE Online
 *
 * The version of the OpenAPI document: 1.33
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Gateway timeout model
 * @export
 * @interface GatewayTimeout
 */
export interface GatewayTimeout {
    /**
     * Gateway timeout message
     * @type {string}
     * @memberof GatewayTimeout
     */
    error: string;
    /**
     * number of seconds the request was given
     * @type {number}
     * @memberof GatewayTimeout
     */
    timeout?: number;
}
/**
 * Check if a given object implements the GatewayTimeout interface.
 */
export declare function instanceOfGatewayTimeout(value: object): value is GatewayTimeout;
export declare function GatewayTimeoutFromJSON(json: any): GatewayTimeout;
export declare function GatewayTimeoutFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewayTimeout;
export declare function GatewayTimeoutToJSON(json: any): GatewayTimeout;
export declare function GatewayTimeoutToJSONTyped(value?: GatewayTimeout | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GatewayTimeout.d.ts.map