/**
 * A object containing a unique identifier for the resource that was created, updated, or deleted.
 * @export
 * @interface UnifiedId
 */
export interface UnifiedId {
    /**
     * The unique identifier of the resource
     * @type {string}
     * @memberof UnifiedId
     */
    readonly id: string;
}
export declare function UnifiedIdFromJSON(json: any): UnifiedId;
export declare function UnifiedIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnifiedId;
export declare function UnifiedIdToJSON(value?: UnifiedId | null): any;
