import { TokenOrigin } from "../support/SDKTokenOrigin"; import { Token } from "../tokens/SDKToken"; import { AnyToken } from "../tokens/SDKTokenValue"; export declare class ThemeUtilities { /** Creates duplicate of the token */ static replicateTokenAsThemePrefabWithoutValue(token: Token, themeId: string, origin: TokenOrigin | null, versionId: string): AnyToken; /** Creates duplicate of the token */ static replicateTokenWithoutValue(token: T): T; /** Creates duplicate of the token */ static replicateTokenWithValue(token: T): T; }