/**
 * 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 MediaValueResponseModel
 */
export interface MediaValueResponseModel {
    /**
     *
     * @type {string}
     * @memberof MediaValueResponseModel
     */
    culture?: string | null;
    /**
     *
     * @type {string}
     * @memberof MediaValueResponseModel
     */
    segment?: string | null;
    /**
     *
     * @type {string}
     * @memberof MediaValueResponseModel
     */
    alias: string;
    /**
     *
     * @type {any}
     * @memberof MediaValueResponseModel
     */
    value?: any | null;
    /**
     *
     * @type {string}
     * @memberof MediaValueResponseModel
     */
    editorAlias: string;
}
/**
 * Check if a given object implements the MediaValueResponseModel interface.
 */
export declare function instanceOfMediaValueResponseModel(value: object): value is MediaValueResponseModel;
export declare function MediaValueResponseModelFromJSON(json: any): MediaValueResponseModel;
export declare function MediaValueResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaValueResponseModel;
export declare function MediaValueResponseModelToJSON(json: any): MediaValueResponseModel;
export declare function MediaValueResponseModelToJSONTyped(value?: MediaValueResponseModel | null, ignoreDiscriminator?: boolean): any;
