/**
 * Ocra (REST API for Sinch RTC clients)
 * REST API for Sinch RTC clients.
 *
 * The version of the OpenAPI document: 0.11.0
 * Contact: rtc@sinch.com
 *
 * 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 ApplicationConfigPushConfig
 */
export interface ApplicationConfigPushConfig {
    /**
     * Google FCM Sender ID.
     * @type {string}
     * @memberof ApplicationConfigPushConfig
     */
    fcmSenderId?: string;
}
export declare function ApplicationConfigPushConfigFromJSON(json: any): ApplicationConfigPushConfig;
export declare function ApplicationConfigPushConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationConfigPushConfig;
export declare function ApplicationConfigPushConfigToJSON(value?: ApplicationConfigPushConfig | null): any;
