export { buildTimeTransform } from "./transform.js"; /** * Clean up media query listeners */ export function cleanupMediaQueryListeners(): void; /** * Check if browser has native CSS if() support */ export function hasNativeSupport(): boolean; /** * Initialize the polyfill */ export function init(options?: {}): void; /** * Process CSS text manually */ export function processCSSText(cssText: any, options?: {}, element?: null): any; /** * Public API to manually trigger processing */ export function refresh(): void;