export { buildTimeTransform } from "./transform.js"; /** * Check if browser has native CSS @mixin/@macro support */ export function hasNativeSupport(): boolean; /** * Initialize the polyfill */ export function init(options?: {}): void; /** * Process CSS text by transforming @mixin/@macro/@apply rules */ export function processCSSText(cssText: any, options?: {}): any; /** * Public API to manually trigger processing */ export function refresh(): void;