/**
 * 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 PublishWithDescendantsResultModel
 */
export interface PublishWithDescendantsResultModel {
    /**
     *
     * @type {string}
     * @memberof PublishWithDescendantsResultModel
     */
    taskId: string;
    /**
     *
     * @type {boolean}
     * @memberof PublishWithDescendantsResultModel
     */
    isComplete: boolean;
}
/**
 * Check if a given object implements the PublishWithDescendantsResultModel interface.
 */
export declare function instanceOfPublishWithDescendantsResultModel(value: object): value is PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelFromJSON(json: any): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelToJSON(json: any): PublishWithDescendantsResultModel;
export declare function PublishWithDescendantsResultModelToJSONTyped(value?: PublishWithDescendantsResultModel | null, ignoreDiscriminator?: boolean): any;
