/**
 * 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.
 */
import type { DocumentResponseModelUrlsInner } from './DocumentResponseModelUrlsInner';
/**
 *
 * @export
 * @interface DocumentUrlInfoResponseModel
 */
export interface DocumentUrlInfoResponseModel {
    /**
     *
     * @type {string}
     * @memberof DocumentUrlInfoResponseModel
     */
    id: string;
    /**
     *
     * @type {Array<DocumentResponseModelUrlsInner>}
     * @memberof DocumentUrlInfoResponseModel
     */
    urlInfos: Array<DocumentResponseModelUrlsInner>;
}
/**
 * Check if a given object implements the DocumentUrlInfoResponseModel interface.
 */
export declare function instanceOfDocumentUrlInfoResponseModel(value: object): value is DocumentUrlInfoResponseModel;
export declare function DocumentUrlInfoResponseModelFromJSON(json: any): DocumentUrlInfoResponseModel;
export declare function DocumentUrlInfoResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentUrlInfoResponseModel;
export declare function DocumentUrlInfoResponseModelToJSON(json: any): DocumentUrlInfoResponseModel;
export declare function DocumentUrlInfoResponseModelToJSONTyped(value?: DocumentUrlInfoResponseModel | null, ignoreDiscriminator?: boolean): any;
