/**
 * 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 W3CPushProfileKeys
 */
export interface W3CPushProfileKeys {
    /**
     * UA P-256 ECDH Diffie-Hellman public key (https://tools.ietf.org/html/rfc8291)
     * @type {string}
     * @memberof W3CPushProfileKeys
     */
    p256dh: string;
    /**
     * Web Push message encryption authentication secret (https://tools.ietf.org/html/rfc8291)
     * @type {string}
     * @memberof W3CPushProfileKeys
     */
    auth: string;
}
export declare function W3CPushProfileKeysFromJSON(json: any): W3CPushProfileKeys;
export declare function W3CPushProfileKeysFromJSONTyped(json: any, ignoreDiscriminator: boolean): W3CPushProfileKeys;
export declare function W3CPushProfileKeysToJSON(value?: W3CPushProfileKeys | null): any;
