import { TagMinimal } from "./tagMinimal.js"; /** Tag response model */ export interface Tag extends TagMinimal { /** iTwin Id associated with the tag (UUID). */ iTwinId: string; /** Id of the user who created the tag (UUID). */ createdById: string; /** Time the tag was created as an ISO8601 string, 'YYYY-MM-DDTHH:mm:ss.sssZ'. */ creationTime: string; /** Time the tag was last modified as an ISO8601 string, 'YYYY-MM-DDTHH:mm:ss.sssZ'. */ lastModified: string; } export declare function isTag(v: unknown): v is Tag;