import StyleSheet from './StyleSheet.js'; import type { Styles, StyleSheetOptions } from './StyleSheet.js'; /** * Creates and attaches a new StyleSheet instance to the DOM. * * @template S - The styles object type. Used to infer the keys of the `classes` property. * @param styles - An object containing CSS rules. Keys represent selectors, values represent style objects. * @param options - Optional configuration for the StyleSheet instance. * @returns The created and attached StyleSheet instance. Its `classes` property maps * each top-level selector to its generated class name. */ declare function css(styles: S, options?: StyleSheetOptions): StyleSheet; export default css;