/**
 * Umbraco Management API
 * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility
 *
 * The version of the OpenAPI document: Latest
 *
 *
 * 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 OEmbedResponseModel
 */
export interface OEmbedResponseModel {
    /**
     *
     * @type {string}
     * @memberof OEmbedResponseModel
     */
    markup: string;
}
/**
 * Check if a given object implements the OEmbedResponseModel interface.
 */
export declare function instanceOfOEmbedResponseModel(value: object): value is OEmbedResponseModel;
export declare function OEmbedResponseModelFromJSON(json: any): OEmbedResponseModel;
export declare function OEmbedResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): OEmbedResponseModel;
export declare function OEmbedResponseModelToJSON(json: any): OEmbedResponseModel;
export declare function OEmbedResponseModelToJSONTyped(value?: OEmbedResponseModel | null, ignoreDiscriminator?: boolean): any;
