/**
 * Zeplin API
 * Access your resources in Zeplin
 *
 * Contact: support@zeplin.io
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ProjectSpacingTokenDeletedEventResource } from './project-spacing-token-deleted-event-resource';
import { ProjectSpacingTokenEventContext } from './project-spacing-token-event-context';
import { WebhookEventActor } from './webhook-event-actor';
export declare const transformProjectSpacingTokenDeletedEventToJSON: (value: ProjectSpacingTokenDeletedEvent) => any;
export declare const transformJSONToProjectSpacingTokenDeletedEvent: (value: any) => ProjectSpacingTokenDeletedEvent;
/**
 *
 * @export
 * @interface ProjectSpacingTokenDeletedEvent
 */
export interface ProjectSpacingTokenDeletedEvent {
    /**
     *
     * @type {string}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    event: 'project.spacing_token';
    /**
     *
     * @type {string}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    action: 'deleted';
    /**
     *
     * @type {number}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    timestamp: number;
    /**
     *
     * @type {ProjectSpacingTokenDeletedEventResource}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    resource: ProjectSpacingTokenDeletedEventResource;
    /**
     *
     * @type {ProjectSpacingTokenEventContext}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    context: ProjectSpacingTokenEventContext;
    /**
     *
     * @type {WebhookEventActor}
     * @memberof ProjectSpacingTokenDeletedEvent
     */
    actor: WebhookEventActor;
}
