/**
 * 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 DictionaryItemItemResponseModel
 */
export interface DictionaryItemItemResponseModel {
    /**
     *
     * @type {string}
     * @memberof DictionaryItemItemResponseModel
     */
    id: string;
    /**
     *
     * @type {string}
     * @memberof DictionaryItemItemResponseModel
     */
    name: string;
}
/**
 * Check if a given object implements the DictionaryItemItemResponseModel interface.
 */
export declare function instanceOfDictionaryItemItemResponseModel(value: object): value is DictionaryItemItemResponseModel;
export declare function DictionaryItemItemResponseModelFromJSON(json: any): DictionaryItemItemResponseModel;
export declare function DictionaryItemItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DictionaryItemItemResponseModel;
export declare function DictionaryItemItemResponseModelToJSON(json: any): DictionaryItemItemResponseModel;
export declare function DictionaryItemItemResponseModelToJSONTyped(value?: DictionaryItemItemResponseModel | null, ignoreDiscriminator?: boolean): any;
