/**
 * Revolugo Booking API Reference
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.5.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface EventApi
 */
export interface EventApi {
    /**
     * Unique name of the event
     * @type {string}
     * @memberof EventApi
     */
    name?: string | null;
    /**
     * Unique slug of the event
     * @type {string}
     * @memberof EventApi
     */
    slug?: string | null;
}
/**
 * Check if a given object implements the EventApi interface.
 */
export declare function instanceOfEventApi(value: object): boolean;
export declare function EventApiFromJSON(json: any): EventApi;
export declare function EventApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventApi;
export declare function EventApiToJSON(value?: EventApi | null): any;
