/**
 * 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 CultureReponseModel
 */
export interface CultureReponseModel {
    /**
     *
     * @type {string}
     * @memberof CultureReponseModel
     */
    name: string;
    /**
     *
     * @type {string}
     * @memberof CultureReponseModel
     */
    englishName: string;
}
/**
 * Check if a given object implements the CultureReponseModel interface.
 */
export declare function instanceOfCultureReponseModel(value: object): value is CultureReponseModel;
export declare function CultureReponseModelFromJSON(json: any): CultureReponseModel;
export declare function CultureReponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CultureReponseModel;
export declare function CultureReponseModelToJSON(json: any): CultureReponseModel;
export declare function CultureReponseModelToJSONTyped(value?: CultureReponseModel | null, ignoreDiscriminator?: boolean): any;
