/**
 * Platform
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.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 { LogWithTimestamp } from './LogWithTimestamp';
/**
 * NearbyLogResponse，NearbyLogResponse
 * @export
 * @interface NearbyLogResponse
 */
export interface NearbyLogResponse {
    /**
     * log list after
     * @type {Array<LogWithTimestamp>}
     * @memberof NearbyLogResponse
     */
    logListAfter?: Array<LogWithTimestamp>;
    /**
     * log list before
     * @type {Array<LogWithTimestamp>}
     * @memberof NearbyLogResponse
     */
    logListBefore?: Array<LogWithTimestamp>;
}
/**
 * Check if a given object implements the NearbyLogResponse interface.
 */
export declare function instanceOfNearbyLogResponse(value: object): value is NearbyLogResponse;
export declare function NearbyLogResponseFromJSON(json: any): NearbyLogResponse;
export declare function NearbyLogResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NearbyLogResponse;
export declare function NearbyLogResponseToJSON(json: any): NearbyLogResponse;
export declare function NearbyLogResponseToJSONTyped(value?: NearbyLogResponse | null, ignoreDiscriminator?: boolean): any;
