/**
 * 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 { OrganizationMember } from './organization-member';
export declare const transformWorkspaceOrganizationMemberInvitedEventResourceToJSON: (value: WorkspaceOrganizationMemberInvitedEventResource) => any;
export declare const transformJSONToWorkspaceOrganizationMemberInvitedEventResource: (value: any) => WorkspaceOrganizationMemberInvitedEventResource;
/**
 *
 * @export
 * @interface WorkspaceOrganizationMemberInvitedEventResource
 */
export interface WorkspaceOrganizationMemberInvitedEventResource {
    /**
     *
     * @type {string}
     * @memberof WorkspaceOrganizationMemberInvitedEventResource
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof WorkspaceOrganizationMemberInvitedEventResource
     */
    type: 'OrganizationMember';
    /**
     *
     * @type {OrganizationMember}
     * @memberof WorkspaceOrganizationMemberInvitedEventResource
     */
    data: OrganizationMember;
}
