/** * Feature detection for optional browser capabilities. */ /** * Safely check if the browser supports a CSS feature. * * Wrapped in a try/catch because `CSS.supports` throws on a malformed * declaration in some engines, and returns nothing useful during SSR. */ export declare function supportsCss(property: string, value: string): boolean;