/** * CSS custom property (CSS variable) definition for theming. * Represents a single CSS custom property name-value pair used for * dynamic theme customization across Tecton components. * * @see platformCssPropertiesChanged - SDK callback for theme property updates */ export interface CssThemeProperty { propertyName: string; value: string; } //# sourceMappingURL=cssThemeProperty.d.ts.map