/// import { StyleContainerProvider } from './style-container.js'; import type { StyleSheetOpts } from './types.js'; export { StyleContainerProvider }; export type { StyleContainerConfig } from './style-container.js'; interface StyleProps extends StyleSheetOpts { /** * CSS Rules. * Ensure each rule is a separate element in the array. */ children: string[]; } export default function Style(props: StyleProps): JSX.Element | null;